@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --primary: #2C5F2D;
  --primary-dark: #1e4520;
  --primary-light: #3a7a3b;
  --accent-green: #97BC62;
  --accent-gold: #F0A000;
  --accent-light: #E6E6E6;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #3d3d3d;
  --text-muted: #6b7280;
  --bg-soft: #f7f9f4;
  --bg-warm: #fdf8f0;
  --border-light: #e2e8d8;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  padding-top: 72px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.6rem); }

p {
  font-family: 'Lora', Georgia, serif;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-spacer {
  padding: 80px 0;
}

.section-spacer-sm {
  padding: 48px 0;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  height: 72px;
  display: flex;
  align-items: center;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white) !important;
  letter-spacing: 1px;
  text-decoration: none;
}

.navbar-brand span {
  color: var(--accent-gold);
}

.navbar-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.navbar-nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 7px 13px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.navbar-nav-links a:hover,
.navbar-nav-links a.active {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.navbar-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  display: block;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--primary-dark);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background-color: var(--bg-soft);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
  display: block;
}

.hero-section h1 {
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  flex-shrink: 0;
}

.hero-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(44, 95, 45, 0.2);
  aspect-ratio: 4/3;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== INTRO BANNER ===== */
.intro-banner {
  background: var(--primary);
  padding: 32px 0;
}

.intro-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.intro-banner p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin: 0;
  letter-spacing: 0.3px;
}

.intro-badge {
  background: var(--accent-gold);
  color: var(--primary-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ===== SECTION LABELS ===== */
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
  display: block;
}

/* ===== TWO COLUMN SECTION ===== */
.two-col-section {
  padding: 80px 0;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.two-col-grid.reverse {
  direction: rtl;
}

.two-col-grid.reverse > * {
  direction: ltr;
}

.two-col-text h2 {
  color: var(--primary);
  margin-bottom: 16px;
}

.two-col-text p {
  margin-bottom: 14px;
}

.two-col-text ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.two-col-text ul li {
  font-family: 'Lora', serif;
  color: var(--text-mid);
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid var(--border-light);
  line-height: 1.6;
}

.two-col-text ul li:last-child {
  border-bottom: none;
}

.two-col-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
}

.two-col-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(44,95,45,0.12);
  aspect-ratio: 5/4;
}

.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.two-col-image:hover img {
  transform: scale(1.03);
}

/* ===== CARD GRID SECTION ===== */
.card-grid-section {
  padding: 80px 0;
  background: var(--bg-soft);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header h2 {
  color: var(--primary);
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1.05rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.info-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(44,95,45,0.14);
}

.info-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.info-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.info-card:hover .info-card-image img {
  transform: scale(1.05);
}

.info-card-body {
  padding: 24px;
}

.info-card-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  margin-bottom: 8px;
  display: block;
}

.info-card-body h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.info-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.65;
}

.link-arrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.link-arrow::after {
  content: '→';
  font-size: 1rem;
}

.link-arrow:hover {
  gap: 10px;
  color: var(--primary-light);
}

/* ===== FULL WIDTH FEATURE ===== */
.fullwidth-feature {
  padding: 96px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.fullwidth-feature::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(151,188,98,0.1);
}

.fullwidth-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.fullwidth-feature-text h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.fullwidth-feature-text p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 16px;
}

.fullwidth-feature-text .section-label {
  color: var(--accent-gold);
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feature-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

.fullwidth-feature-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  aspect-ratio: 4/3;
}

.fullwidth-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== TABLE SECTION ===== */
.table-section {
  padding: 80px 0;
  background: var(--bg-warm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.comparison-table thead {
  background: var(--primary);
}

.comparison-table thead th {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 18px 20px;
  text-align: left;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: background 0.15s;
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: rgba(44,95,45,0.04);
}

.comparison-table tbody td {
  font-family: 'Lora', serif;
  font-size: 0.92rem;
  color: var(--text-mid);
  padding: 16px 20px;
  vertical-align: top;
  line-height: 1.6;
}

.comparison-table tbody td:first-child {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--primary);
}

.comparison-table tbody tr:nth-child(even) {
  background: var(--white);
}

/* ===== CHART/INFOGRAPHIC SECTION ===== */
.infographic-section {
  padding: 80px 0;
  background: var(--bg-soft);
}

.bars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.bar-item {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.bar-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.bar-sublabel {
  font-family: 'Lora', serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

.bar-track {
  height: 10px;
  background: var(--accent-light);
  border-radius: 50px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--primary), var(--accent-green));
}

.bar-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-align: right;
  margin-top: 6px;
}

/* ===== MYTH FACT SECTION ===== */
.myth-fact-section {
  padding: 80px 0;
}

.myth-fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.myth-fact-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(44,95,45,0.12);
  aspect-ratio: 3/4;
}

.myth-fact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.myth-fact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.myth-fact-item {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 20px 22px;
  border-left: 4px solid var(--accent-green);
}

.myth-fact-item.myth {
  border-left-color: #d97706;
  background: #fffbeb;
}

.myth-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.myth-label.myth-tag {
  color: #b45309;
}

.myth-label.fact-tag {
  color: var(--primary);
}

.myth-fact-item p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.65;
}

/* ===== FAQ ACCORDION ===== */
.faq-section {
  padding: 80px 0;
  background: var(--bg-warm);
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  transition: background 0.2s, transform 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  margin: 0;
  color: var(--text-mid);
}

.faq-item.open .faq-answer {
  display: block;
}

/* ===== TIMELINE ===== */
.timeline-section {
  padding: 80px 0;
  background: var(--primary);
}

.timeline-section h2 {
  color: var(--white);
}

.timeline-section .section-label {
  color: var(--accent-gold);
}

.timeline {
  position: relative;
  margin-top: 48px;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.2);
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
  padding-left: 28px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-green);
  border: 2px solid var(--white);
}

.timeline-era {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 6px;
  display: block;
}

.timeline-item h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.65;
}

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ===== CTA BANNER ===== */
.cta-section {
  padding: 80px 0;
  background: var(--bg-soft);
  text-align: center;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-inner h2 {
  color: var(--primary);
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-custom {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid var(--primary);
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-custom {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  background: transparent;
  color: var(--primary);
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid var(--primary);
  display: inline-block;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== DISCLAIMER BOX ===== */
.disclaimer-box {
  background: #f0f7f0;
  border: 1px solid var(--accent-green);
  border-left: 5px solid var(--primary);
  border-radius: 10px;
  padding: 24px 28px;
  margin: 40px 0;
}

.disclaimer-box h3 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.disclaimer-box p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.65;
}

/* ===== POLICY PAGES ===== */
.policy-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.policy-page h1 {
  color: var(--primary);
  margin-bottom: 8px;
}

.policy-page .policy-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.policy-page h2 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-light);
}

.policy-page h3 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 8px;
}

.policy-page p {
  font-size: 0.95rem;
}

.policy-page ul {
  padding-left: 20px;
  margin: 12px 0;
}

.policy-page ul li {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-detail-text strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  display: block;
  margin-bottom: 3px;
}

.contact-detail-text p {
  font-size: 0.92rem;
  margin: 0;
}

.contact-form-wrap {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 36px;
}

.contact-form-wrap h2 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 8px;
}

.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44,95,45,0.12);
}

.form-group {
  margin-bottom: 20px;
}

.form-disclaimer {
  font-family: 'Lora', serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}

.thank-you-inner {
  max-width: 560px;
}

.thank-you-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
  color: var(--primary);
}

.thank-you-inner h1 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.thank-you-inner p {
  color: var(--text-mid);
  margin-bottom: 12px;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: 80px 0;
  background: var(--bg-soft);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(44,95,45,0.15);
  aspect-ratio: 4/3;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 3px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(44,95,45,0.12);
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.value-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ===== FOR MENS PAGE ===== */
.for-mens-hero {
  padding: 80px 0;
  background: var(--bg-soft);
}

.topic-sections {
  padding: 0;
}

.topic-sections .two-col-section:nth-child(even) {
  background: var(--bg-soft);
}

/* ===== FAQ PAGE ===== */
.faq-page-hero {
  padding: 64px 0;
  background: var(--bg-soft);
  text-align: center;
}

.faq-page-hero h1 {
  color: var(--primary);
  margin-bottom: 14px;
}

.faq-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 64px 0;
}

.faq-category h3 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary-dark);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand h3 span {
  color: var(--accent-gold);
}

.footer-brand .tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-green);
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-edu-badge {
  display: inline-block;
  background: rgba(240,160,0,0.15);
  border: 1px solid rgba(240,160,0,0.3);
  color: var(--accent-gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 50px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-family: 'Lora', serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--accent-green);
}

.footer-contact-item {
  margin-bottom: 10px;
}

.footer-contact-item strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 2px;
}

.footer-contact-item p {
  font-family: 'Lora', serif;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.5;
}

.footer-hours {
  margin-top: 16px;
}

.footer-hours-badge {
  display: inline-block;
  background: rgba(151,188,98,0.15);
  border: 1px solid rgba(151,188,98,0.25);
  color: var(--accent-green);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.footer-hours p {
  font-family: 'Lora', serif;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  margin: 3px 0;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-policies {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-policies a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer-policies a:hover {
  color: rgba(255,255,255,0.8);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--primary-dark);
  border-top: 3px solid var(--accent-green);
  padding: 20px 24px;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-family: 'Lora', serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  flex: 1;
  min-width: 220px;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 9px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-btn:hover {
  opacity: 0.88;
}

.cookie-btn-accept {
  background: var(--accent-green);
  color: var(--primary-dark);
}

.cookie-btn-reject {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}

.cookie-btn-learn {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid rgba(240,160,0,0.4);
}

/* ===== SECTION BG VARIANTS ===== */
.bg-white-section {
  background: var(--white);
}

.bg-soft-section {
  background: var(--bg-soft);
}

.bg-warm-section {
  background: var(--bg-warm);
}

.bg-primary-section {
  background: var(--primary);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--bg-soft);
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border-light);
}

.page-header .section-label {
  margin-bottom: 10px;
}

.page-header h1 {
  color: var(--primary);
  margin-bottom: 14px;
}

.page-header p {
  font-size: 1.05rem;
  max-width: 640px;
}

/* ===== HIGHLIGHT PANEL ===== */
.highlight-panel {
  background: var(--primary);
  border-radius: 16px;
  padding: 36px 40px;
  margin: 40px 0;
}

.highlight-panel h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.highlight-panel p {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-grid,
  .two-col-grid,
  .two-col-grid.reverse,
  .fullwidth-feature-grid,
  .myth-fact-grid,
  .about-hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bars-grid {
    grid-template-columns: 1fr;
  }

  .faq-categories {
    grid-template-columns: 1fr;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 60px;
  }

  .site-navbar {
    height: 60px;
    flex-direction: column;
    height: auto;
    padding: 0;
  }

  .navbar-inner {
    height: 60px;
  }

  .navbar-nav-links {
    display: none;
  }

  .navbar-hamburger {
    display: flex;
  }

  .section-spacer {
    padding: 56px 0;
  }

  .hero-section {
    padding: 56px 0;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-policies {
    justify-content: center;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .policy-page {
    padding: 40px 20px 64px;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 12px;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 12px 10px;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
