* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f4f7f5;
  color: #222;
  line-height: 1.6;
  scroll-behavior: smooth;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #03170e 0%, #074526 100%);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(229, 190, 1, 0.18);
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
}

nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

nav a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 999px;
  transition: transform 0.25s ease, color 0.25s ease;
  opacity: 0;
  animation: navFadeIn 0.45s ease forwards;
  animation-delay: calc(0.08s * var(--i, 1));
}

nav a::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: #e5be01;
  transform: translateX(-50%);
  transition: width 0.28s ease;
}

nav a:hover,
nav a.active {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

nav a:hover::before,
nav a.active::before {
  width: 60%;
}

@keyframes navFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu-toggle {
  display: none;
  border: none;
  background: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.page-container {
  padding-top: 120px;
}

.hero {
  color: #fff;
  padding: 120px 30px 80px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1rem;
  opacity: 0.92;
}

.hero-divider,
.section-title::after {
  content: '';
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #fff, #e5be01, #fff);
  margin: 20px auto;
  border-radius: 2px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #008753;
  text-align: center;
  position: relative;
}

.section-title::after {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
}

.section {
  padding: 80px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.section.light {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.05);
}

.text-center {
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: #fafbf9;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-bottom: 16px;
  font-size: 1.4rem;
  color: #008753;
}

.card p {
  color: #525252;
}

.feature-list {
  display: grid;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-item i {
  font-size: 1.8rem;
  color: #008753;
  margin-top: 4px;
}

.feature-item div p {
  margin-bottom: 14px;
}

.stats-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stat-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.06);
}

.stat-card h3 {
  font-size: 3rem;
  margin-bottom: 14px;
  color: #008753;
}

.stat-card p {
  color: #5f5f5f;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #008753;
  color: #fff;
  padding: 16px 38px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  background: #006b44;
}

.footer {
  background: #041f12;
  color: #d9e5dc;
  padding: 50px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer h4 {
  margin-bottom: 18px;
  color: #fff;
}

.footer a {
  color: #d9e5dc;
  text-decoration: none;
}

.footer a:hover {
  color: #e5be01;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 50px;
  border-bottom: 1px solid rgba(229, 190, 1, 0.15);
  padding-bottom: 40px;
}

.footer-logo h3 {
  font-size: 1.8rem;
  color: #e5be01;
  margin-bottom: 15px;
  font-weight: 800;
}

.footer-logo p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.85;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(229, 190, 1, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5be01;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #e5be01;
  color: #001a0d;
  transform: translateY(-3px);
}

.footer-contact h4 {
  font-size: 1.1rem;
  color: #e5be01;
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-contact p {
  margin-bottom: 12px;
  font-size: 0.95rem;
  opacity: 0.85;
}

.footer-contact a {
  color: #d4e4d6;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #e5be01;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-column h5 {
  font-size: 1.05rem;
  color: #e5be01;
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #d4e4d6;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #e5be01;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(229, 190, 1, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

.grid-two {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

form {
  display: grid;
  gap: 18px;
}

input,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d7e4dc;
  padding: 14px 16px;
  font-family: inherit;
  color: #222;
  background: #fff;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #008753;
  box-shadow: 0 0 0 4px rgba(0, 135, 83, 0.12);
}

textarea {
  min-height: 170px;
  resize: vertical;
}

@media (max-width: 900px) {
  header {
    padding: 0 24px;
    height: auto;
    flex-wrap: wrap;
    gap: 12px;
  }

  nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .page-container {
    padding-top: 140px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 100px 20px 60px;
  }

  .section {
    padding: 60px 20px;
  }

  .grid-two {
    grid-template-columns: 1fr;
  }
}
