* {
  box-sizing: border-box;
  margin: 0;


}

body {
  font-family: Arial, sans-serif;
  color: #182249;
  background-color: #f0f4ff;
}

.container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 40px 4vw; /* Match client page spacing */
  box-sizing: border-box;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}




.title .source,
.title a {
  color: white;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 1450px;
  line-height: 1.5;
}

.feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 30px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.feature img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
}

.feature .text {
  flex: 1;
  min-width: 260px;
    padding: 40px;
    border-radius: 25px;
background-color: #fff;
}


.feature .text h2 {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.feature .text p {
  margin-bottom: 10px;
  line-height: 1.6;
  text-align: justify;
}

.feature .text .link {
  color: #182249;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #182249;
}

.link:hover {
  text-decoration: underline;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature:nth-of-type(1) { animation-delay: 0.2s; }
.feature:nth-of-type(2) { animation-delay: 0.4s; }
.feature:nth-of-type(3) { animation-delay: 0.6s; }


/* === 📱 Mobile View (≤ 767px) === */
@media (min-width: 441px) and (max-width: 767px) {
  .container {
    padding: 20px;
  }

  .feature {
    flex-direction: column;
    text-align: center;
  }

  .feature img {
     width: 100%;
        height: 250px;
        max-width: 250px;
  }

  .feature .text h2 {
    font-size: 1.3rem;
  }

  .feature .text p {
    font-size: 1.2rem;
  text-align: justify;
  }
}

/* === 📲 iPad / Tablet View (768px–1150px) === */
@media (min-width: 768px) and (max-width: 1150px) {
  .container {
    padding: 30px 40px;
  }

  .feature {
    flex-direction: row;
    text-align: left;
  }

  .feature img {
    width: 250px;
    height: 250px;
  }

  .feature .text h2 {
    font-size: 1.5rem;
  }

  .feature .text p {
    font-size: 1.2rem;
  text-align: justify;
  }
}

/* === 🖥️ Desktop View (≥ 1151px) === */
@media (min-width: 1151px) {
  .container {
    padding: 40px 4vw;
  }

  .feature {
    flex-direction: row;
    justify-content: space-between;
  }

  .feature img {
    width: 300px;
    height: 300px;
  }

  .feature .text h2 {
    font-size: 1.7rem;
  }

  .feature .text p {
    font-size: 1.5rem;
  text-align: justify;
  }
}
