* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #2d2d2d;
  background: #ffffff;
  line-height: 1.7;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #1565C0;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.container {
  width: min(92%, 1180px);
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
  margin: 0 auto;
}

.center {
  text-align: center;
}

.section {
  padding: 78px 0;
}

.alt-bg {
  background: #f5f8f5;
}

/* =========================
   HEADER
========================= */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e6ece7;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-wrap {
  flex-shrink: 0;
}

.site-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.brand-text h1 {
  font-size: 2rem;
  line-height: 1.1;
  font-family: Georgia, "Times New Roman", serif;
}

.brand-text h1 a {
  color: #2E7D32;
}

.brand-text p {
  color: #666;
  font-size: 0.95rem;
  max-width: 420px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #1f3b2f;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
}

.main-nav a {
  display: inline-block;
  padding: 10px 14px;
  color: #222;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: #eef6ef;
  color: #2E7D32;
}

/* =========================
   HERO
========================= */
.hero {
  background: linear-gradient(180deg, #f4fbf5 0%, #ffffff 100%);
  padding-bottom: 30px;
}

.hero-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-content {
  margin-top: -70px;
  position: relative;
  z-index: 2;
}

.hero-box {
  max-width: 760px;
  background: rgba(255,255,255,0.96);
  padding: 34px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  border: 1px solid #e8ece8;
}

.eyebrow {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2E7D32;
  margin-bottom: 12px;
}

.hero-box h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  color: #1f3b2f;
}

.hero-box p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-block;
  background: #2E7D32;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: bold;
  border: 2px solid #2E7D32;
  transition: 0.2s ease;
}

.btn:hover {
  background: #256528;
  border-color: #256528;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #2E7D32;
}

.btn-outline:hover {
  background: #2E7D32;
  color: #fff;
}

/* =========================
   CONTENT
========================= */
.intro-section h2,
.section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  color: #1f3b2f;
}

.intro-section p,
.section-heading p {
  color: #555;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card,
.resource-card {
  background: #fff;
  border: 1px solid #e7ece8;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
  transition: 0.2s ease;
}

.feature-card:hover,
.resource-card:hover {
  transform: translateY(-4px);
}

.feature-card h3,
.resource-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  color: #1f3b2f;
}

.feature-card p,
.resource-card p {
  color: #555;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #efefef;
  margin-top: 20px;
  border-top: 4px dotted #2d2d2d;
}

.footer-top {
  display: grid;
  grid-template-columns: 120px 1.3fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 34px 0;
}

.footer-round-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.footer-contact h3 {
  font-size: 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  color: #1f3b2f;
  margin-bottom: 10px;
}

.footer-contact p {
  color: #333;
  margin-bottom: 6px;
}

.footer-sponsors h4 {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #1f3b2f;
  font-weight: 700;
}

.sponsor-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.sponsor-logos img {
  max-height: 68px;
  width: auto;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid #d9d9d9;
  padding: 16px 0 24px;
  text-align: center;
  color: #666;
  font-size: 0.95rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .feature-grid,
  .resource-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top {
    text-align: center;
  }

  .footer-logo-area,
  .footer-sponsors {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sponsor-logos {
    justify-content: center;
  }

  .hero-content {
    margin-top: -50px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    width: 100%;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 12px;
  }

  .main-nav a {
    display: block;
    text-align: center;
    background: #f5f7f5;
    border: 1px solid #e5ebe6;
  }

  .header-wrap {
    flex-wrap: wrap;
  }

  .site-logo {
    width: 62px;
    height: 62px;
  }

  .brand-text h1 {
    font-size: 1.6rem;
  }

  .brand-text p {
    font-size: 0.88rem;
  }

  .hero-banner img {
    height: 250px;
  }

  .hero-content {
    margin-top: -30px;
  }

  .hero-box {
    padding: 24px;
    border-radius: 14px;
  }

  .hero-box h2 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 58px 0;
  }

  .feature-card,
  .resource-card {
    padding: 24px;
  }

  .footer-round-logo {
    width: 80px;
    height: 80px;
  }
}

/* CONTENT BLOCK */
.content-block {
  background: #ffffff;
  border: 1px solid #e7ece8;
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}

.content-block h3 {
  font-size: 1.35rem;
  margin-top: 26px;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  color: #1f3b2f;
}

.content-block h3:first-child {
  margin-top: 0;
}

.content-block p {
  color: #555;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .content-block {
    padding: 24px;
  }

  .content-block h3 {
    font-size: 1.2rem;
  }
}