*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
  background: linear-gradient(135deg, #f5f8f7 0%, #e6f0ee 100%);
  color: #18332F;
  overflow-x: hidden;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #18332F;
}

section {
  margin-bottom: 3.5rem;
  animation: fadeUp 1.1s cubic-bezier(.23,1.02,.32,1) both;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 4.5rem;
  border-bottom: 1.5px solid rgba(34,193,195,0.10);
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1465101046530-73398c7f28ca?auto=format&fit=crop&w=1200&q=80') no-repeat center center;
  background-size: cover;
  z-index: 0;
  filter: brightness(0.97) blur(0.5px);
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  background: linear-gradient(120deg, #22b8cf99 0%, #f7b26799 100%);
  opacity: 0.7;
  animation: heroGradientMove 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroGradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem 3rem 1.5rem;
  background: rgba(255,255,255,0.38);
  border-radius: 2.5rem;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.13), 0 1.5px 8px 0 rgba(34,193,195,0.08);
  backdrop-filter: blur(8px);
  max-width: 600px;
  margin: 3rem auto 2rem auto;
  opacity: 0;
  transform: translateY(40px);
  animation: heroContentFadeIn 1.2s cubic-bezier(.23,1.02,.32,1) 0.3s forwards, heroContentFloat 4s ease-in-out 1.5s infinite alternate;
}
@keyframes heroContentFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-18px); }
}
@keyframes heroContentFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.logo {
  margin-bottom: 2.2rem;
  animation: scaleInLogo 1.1s cubic-bezier(.23,1.02,.32,1) 0.2s both;
}
.logo svg, .navbar-logo img {
  width: 180px;
  height: 90px;
}
.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 1.2rem 0;
  text-align: center;
  letter-spacing: 0.06em;
  text-shadow: 0 4px 24px rgba(24, 51, 47, 0.10), 0 1px 0 #fff;
}
.tagline {
  font-size: 1.35rem;
  font-weight: 500;
  color: #18332F;
  background: rgba(255,255,255,0.60);
  border: 1.5px solid #bcd2ce;
  border-radius: 2rem;
  padding: 1rem 2.8rem;
  margin-top: 0.5rem;
  margin-bottom: 2.2rem;
  text-align: center;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(24, 51, 47, 0.08);
  backdrop-filter: blur(4px);
}
.cta-btn {
  background: linear-gradient(90deg, #22b8cf 0%, #f7b267 100%);
  color: #18332F;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 1.1rem 3.2rem;
  border: none;
  border-radius: 2.5rem;
  box-shadow: 0 2px 16px rgba(24, 51, 47, 0.10);
  text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.16s, box-shadow 0.18s, box-shadow 0.18s;
  letter-spacing: 0.01em;
  outline: none;
  cursor: pointer;
  margin-top: 0.5rem;
  filter: drop-shadow(0 0 8px #22b8cf33);
}
.cta-btn:hover {
  background: linear-gradient(90deg, #f7b267 0%, #22b8cf 100%);
  color: #18332F;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(24, 51, 47, 0.13), 0 0 16px #f7b26744;
}

.categories-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(219,233,230,0.85);
  padding: 3.5rem 0 3.5rem 0;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.07);
  border-radius: 2.5rem;
  border: 1.5px solid rgba(34,193,195,0.10);
  margin-bottom: 3.5rem;
  animation: fadeUp 1.1s cubic-bezier(.23,1.02,.32,1) 0.2s both;
}
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.category-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.92);
  border: 1.5px solid #e6f0ee;
  border-radius: 1.2rem;
  padding: 0.9rem 1.4rem;
  font-size: 1.08rem;
  color: #18332F;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(24, 51, 47, 0.10), 0 1.5px 8px 0 rgba(34,193,195,0.08);
  backdrop-filter: blur(4px);
  will-change: transform, box-shadow;
  position: relative;
  transition: background 0.22s, box-shadow 0.22s, transform 0.15s, border 0.15s;
  cursor: pointer;
  min-height: 56px;
}
.category-card:hover {
  background: #f5f8f7;
  box-shadow: 0 6px 24px rgba(24, 51, 47, 0.13), 0 0 12px #22b8cf22;
  transform: translateY(-2px) scale(1.025);
  border: 1.5px solid #bcd2ce;
}
.category-card .icon {
  margin-right: 1.1rem;
  background: linear-gradient(90deg, #22b8cf 0%, #f7b267 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
}
.category-card .arrow {
  margin-left: 1.1rem;
  font-size: 1.15rem;
  color: #bcd2ce;
}

.features-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2.2rem;
  padding: 3.5rem 2rem 2.5rem 2rem;
  background: transparent;
  flex-wrap: wrap;
  max-width: 100vw;
  border-radius: 2.5rem;
  border: 1.5px solid rgba(34,193,195,0.10);
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.07);
  margin-bottom: 3.5rem;
  animation: fadeUp 1.1s cubic-bezier(.23,1.02,.32,1) 0.3s both;
}
.feature-card {
  background: rgba(255,255,255,0.85);
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px rgba(24, 51, 47, 0.08), 0 1.5px 8px 0 rgba(34,193,195,0.08);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1.2rem;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 1.5px solid #e6f0ee;
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px rgba(24, 51, 47, 0.13), 0 0 12px #22b8cf22;
}
.feature-card i {
  font-size: 2.5rem;
  color: #22b8cf;
  margin-bottom: 1.1rem;
}
.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #18332F;
}
.feature-card p {
  font-size: 1.05rem;
  color: #2d4a46;
  margin: 0;
  font-weight: 400;
}

.footer {
  width: 100%;
  background: linear-gradient(90deg, #e6f0ee 0%, #f5f8f7 100%);
  padding: 2.2rem 0 1.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 2px solid #e6f0ee;
  margin-top: 2.5rem;
  box-shadow: 0 -2px 16px rgba(24, 51, 47, 0.04);
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
  color: #18332F;
  gap: 0.7rem;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 2.2rem;
  margin-bottom: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(255,255,255,0.7);
  border-radius: 1.2rem;
  padding: 0.5rem 1.2rem;
  box-shadow: 0 2px 8px rgba(24, 51, 47, 0.06);
  border: 1px solid #e6f0ee;
}
.footer-contact i {
  color: #22b8cf;
  margin-right: 0.5rem;
  font-size: 1.2em;
}
.footer-contact a {
  color: #22b8cf;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-contact a:hover {
  color: #f7b267;
  text-decoration: underline;
}
.footer-links a {
  color: #22b8cf;
  text-decoration: none;
  margin: 0 0.2rem;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-links a:hover {
  color: #f7b267;
}

.navbar {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
  box-shadow: 0 2px 16px rgba(24, 51, 47, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2.5vw;
  min-height: 64px;
  backdrop-filter: blur(8px);
}
.navbar-logo img {
  height: 48px;
  width: auto;
  display: block;
  background: #fff;
  border-radius: 0.7rem;
  padding: 0.2rem 0.5rem;
  box-shadow: 0 2px 8px rgba(24, 51, 47, 0.08);
}
.navbar-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.navbar-links li a {
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 0.3rem 0.7rem;
  border-radius: 1.2rem;
  transition: background 0.18s, color 0.18s;
}
.navbar-links li a:hover {
  background: rgba(255,255,255,0.18);
  color: #f7b267;
}
@media (max-width: 900px) {
  section {
    margin-bottom: 2.2rem;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 1vw;
    min-height: 56px;
  }
  .navbar-logo img {
    height: 38px;
  }
  .navbar-links {
    gap: 1.1rem;
    font-size: 0.98rem;
    margin-top: 0.3rem;
  }
  .hero-content {
    padding: 2.2rem 0.5rem 1.5rem 0.5rem;
    max-width: 98vw;
    margin: 1.5rem auto 1rem auto;
  }
  .logo svg, .navbar-logo img {
    width: 120px;
    height: 60px;
  }
  .hero-content h1 {
    font-size: 2.2rem;
    letter-spacing: 0.02em;
  }
  .tagline {
    font-size: 1.1rem;
    padding: 0.7rem 1.5rem;
  }
  .categories-section {
    padding: 1.5rem 0 1.5rem 0;
    border-radius: 1.2rem;
    margin-bottom: 2.2rem;
  }
  .category-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    max-width: 98vw;
  }
  .category-card {
    font-size: 1rem;
    padding: 0.7rem 0.7rem;
    min-height: 44px;
  }
  .category-card .icon {
    font-size: 1.1rem;
    margin-right: 0.5rem;
  }
  .category-card .arrow {
    font-size: 1rem;
    margin-left: 0.5rem;
  }
  .features-section {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem 0.5rem 0.5rem 0.5rem;
    border-radius: 1.2rem;
    margin-bottom: 2.2rem;
  }
  .feature-card {
    min-width: 0;
    max-width: 98vw;
    padding: 1.5rem 0.7rem 1.2rem 0.7rem;
  }
  .footer {
    padding: 1.2rem 0 0.7rem 0;
    margin-top: 1.2rem;
  }
  .footer-contact {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.98em;
    padding: 0.5rem 0.5rem;
  }
}

@keyframes scaleInLogo {
  0% { opacity: 0; transform: scale(0.7); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.23,1.02,.32,1), transform 0.7s cubic-bezier(.23,1.02,.32,1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeUp 0.8s cubic-bezier(.23,1.02,.32,1) both;
} 