body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #FDF9F6;
  color: #155E63;
}

.hero, .section, footer {
  padding: 3rem 2rem;
  text-align: center;
}

.cta {
  background: #FF7E6B;
  color: white;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: bold;
  box-shadow: 0 0 12px #ff7e6b88;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
}

.cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 16px #ff7e6bcc;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card:hover {
  transform: translateY(-6px);
}

footer {
  text-align: center;
  font-size: 0.85rem;
  color: #999;
  margin-top: 3rem;
}

#lang-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: white;
  color: #155E63;
  font-weight: bold;
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 0.4rem 0.8rem;
  font-size: 1rem;
  z-index: 1000;
}

/* Navbar Styles */
.navbar {
  background-color: #ffffff;
  padding: 0.5rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

/* Fixed logo size - IMPORTANT: Override any other logo styles */
.logo-banner {
  height: 36px !important;
  width: auto !important;
  object-fit: contain !important;
  max-height: 36px !important;
}

.hamburger {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #155E63;
  display: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
  color: #155E63;
}

.nav-links a {
  text-decoration: none;
  color: #155E63;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #FF7E6B;
}


/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hamburger {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    color: #155E63;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: white;
    width: 100%;
    padding: 1rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-links.show {
    display: flex;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
}
@media (max-width: 600px) {
  .features-grid {
  grid-template-columns: 1fr;
  }
  .hero-logo {
    width: 80px;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

  .cta {
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
  }
}

.hero-logo-wrapper {
  height: 50px
  width: auto
  text-align: center;
  margin-bottom: 1rem;
}

.hero-logo {
  width: 50px; /* or 120px if you prefer slightly larger */
  height: auto;
  margin: 0 auto 1rem auto;
  display: block;
}

.hero-tagline {
  color: #6CC5AD;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 0.5rem;
}

