.hero-section {
/* background-color: #145f64; */
 /*color: #fff; */
  /* padding: 100px 0;
  min-height: 100vh; */
}

.hero-title {
  font-size: 31px;
  font-weight: 700;
  line-height: 1.3;
}

.hero-text {
  font-size: 1.1rem;
  margin-top: 15px;
  color: #e6f7f8;
}

.btn-light {
  background-color: #fff;
  color: #145f64;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background-color: transparent;
  color: #fff;
}

.partner-text {
  font-size: 0.95rem;
  color: #e6f7f8;
}

.hero-img {
  max-width: 85%;
  height: auto;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 767px) {
  .hero-section {
    text-align: center;
    padding: 70px 20px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-img {
    max-width: 100%;
    margin-top: 40px;
  }
}
.benefits-section {
    background-color: #e5f6f6; 
}
.feature-icon {
    color: #53c2c2; 
}



