/* Purpose Section */
#purpose {
  padding: 0px 110px;
  background: #fff;
  text-align: left;
}

#purpose h2 {
  font-size: 50px;
  margin-bottom: 15px;
  color: #222;
}

.purpose-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 0;
}

/* Purpose Item */
.purpose-item {
  position: relative;
  flex: 1 1 45%;
  max-width: 500px;
}

.purpose-item img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Button Style — moved to bottom */
.purpose-btn {
  position: absolute;
  bottom: 70px;
  left: 40px;
  background: #2775e1;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
}

.purpose-btn:hover {
  background: #024274;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  #purpose {
    text-align: center;
    padding: 20px 30px;
  }

  #purpose h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .purpose-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .purpose-item {
    max-width: 80%;
  }

  .purpose-btn {
    font-size: 17px;
    padding: 12px 22px;
    bottom: 25px;
    left: 17px;
  }
}

@media (max-width: 480px) {
  #purpose h2 {
    font-size: 36px;
    margin-top: 10px;
  }

  .purpose-item {
    max-width: 100%;
  }

  .purpose-btn {
    font-size: 18px;
    padding: 10px 19px;
    bottom: 12px;
    left: 12px;
  }
}
