.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 600;
  animation: fadeInDown 1s ease;
}

.subtitle {
  text-align: center;
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  color: #666;
  animation: fadeIn 1.2s ease;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  animation: fadeInUp 1.4s ease;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card i {
  font-size: 32px;
  background: linear-gradient(
    90deg,
    rgba(248, 102, 196, 0.6) 0%,
    rgba(255, 235, 235, 0.4) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card ul {
  padding-left: 20px;
  color: #666;
}

.service-card ul li {
  list-style: initial;
}

.highlight-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  animation: fadeInUp 1.6s ease;
}

.highlight-box {
  flex: 1 1 250px;
  background: #f3f3fc;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}

.highlight-box i {
  font-size: 28px;
  margin-bottom: 10px;
  background: linear-gradient(
      90deg,
      rgba(248, 102, 196, 0.6) 0%,
      rgba(255, 235, 235, 0.4) 100%
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-section {
  background: linear-gradient(
    90deg,
    rgba(248, 102, 196, 0.6) 0%,
    rgba(255, 235, 235, 0.4) 100%
  );
  color: white;
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin-top: 80px;
  animation: fadeInUp 1.8s ease;
}

.cta-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.cta-section a {
  display: inline-block;
  background: white;
  padding: 12px 30px;
  color: var(--dark-blue-text);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.cta-service-main {
  width: 100px;
  height: 40px;
  border-radius: 50px;
  margin-top: 15px;
  transition: all 0.5s;
}
.cta-service-main a {
	color: #0b142e;
}

.cta-service-main:hover {
  background-color: var(--primary-color);
  color: var(--white-text);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}