@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Open+Sans:wght@400;600&display=swap');

:root {
  --color-primary: #2E8B57;
  --color-primary-dark: #236b43;
  --color-primary-light: #3aad6e;
  --color-accent-yellow: #F0E68C;
  --color-accent-blue: #87CEEB;
  --color-accent-red: #CD5C5C;
  --color-dark: #1a1a1a;
  --color-text: #2d2d2d;
  --color-text-light: #555555;
  --color-bg: #f9f9f6;
  --color-white: #ffffff;
  --color-border: #e0e0e0;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --container-max: 1280px;
  --radius: 8px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.25;
}

h1 {
  font-weight: 900;
  letter-spacing: -0.5px;
}

h2 {
  font-weight: 700;
}

h3 {
  font-weight: 600;
}

p {
  line-height: 1.7;
  color: var(--color-text);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  padding-left: 1.5rem;
}

.container-wide {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 80px 0;
}

.section-pad-sm {
  padding: 48px 0;
}

.text-balance {
  text-wrap: balance;
}

.badge-tag {
  display: inline-block;
  background: var(--color-accent-yellow);
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.badge-tag--blue {
  background: var(--color-accent-blue);
}

.badge-tag--red {
  background: var(--color-accent-red);
  color: var(--color-white);
}

.badge-tag--green {
  background: var(--color-primary);
  color: var(--color-white);
}

.section-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
  display: block;
}

.divider-line {
  width: 56px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
  margin: 14px 0 24px;
}

.divider-line--yellow {
  background: var(--color-accent-yellow);
}

.divider-line--center {
  margin-left: auto;
  margin-right: auto;
}

.btn-read {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border-radius: var(--radius);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.btn-read:hover {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(46,139,87,0.25);
  text-decoration: none;
}

.btn-read--solid {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-read--solid:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  border-color: var(--color-primary-dark);
}

.btn-read--white {
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-read--white:hover {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(255,255,255,0.25);
}

/* ===================== HEADER ===================== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease;
}

#main-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  color: var(--color-white);
  letter-spacing: -1px;
  flex-shrink: 0;
}

.header-logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 22px;
  color: var(--color-dark);
  letter-spacing: -0.5px;
}

.header-logo-text span {
  color: var(--color-primary);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-text);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.header-nav a:hover,
.header-nav a.active {
  background: rgba(46,139,87,0.1);
  color: var(--color-primary);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  z-index: 999;
  padding: 12px 24px 20px;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: background 0.2s;
  text-decoration: none;
}

.mobile-nav a:hover {
  background: rgba(46,139,87,0.08);
  color: var(--color-primary);
}

/* ===================== HERO ===================== */
.hero-section {
  padding-top: 68px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--color-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px 24px;
  max-width: 700px;
  margin-left: 0;
  padding-left: 80px;
}

.hero-content h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  text-wrap: balance;
}

.hero-content h1 span {
  color: var(--color-accent-yellow);
}

.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-disclaimer {
  display: inline-block;
  background: rgba(240,230,140,0.18);
  border: 1px solid var(--color-accent-yellow);
  color: var(--color-accent-yellow);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: var(--radius);
  margin-top: 28px;
}

/* ===================== TWO-COL SECTION ===================== */
.two-col-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col-section.reverse {
  direction: rtl;
}

.two-col-section.reverse > * {
  direction: ltr;
}

.two-col-img {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.two-col-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.two-col-img-accent {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  background: var(--color-accent-yellow);
  border-radius: 8px;
  z-index: -1;
}

.two-col-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 18px;
}

.two-col-text p {
  margin-bottom: 14px;
  color: var(--color-text-light);
}

.two-col-text ul {
  margin-bottom: 24px;
}

.two-col-text ul li {
  color: var(--color-text-light);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.two-col-text ul li::marker {
  color: var(--color-primary);
}

/* ===================== CARD GRID ===================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.info-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}

.info-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.info-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.info-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.info-card__body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.info-card__body p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  margin-bottom: 18px;
  flex: 1;
}

.info-card__footer {
  margin-top: auto;
}

.info-card--no-img .info-card__body {
  padding: 28px;
}

/* ===================== GREEN BG SECTION ===================== */
.bg-green-section {
  background: var(--color-primary);
  color: var(--color-white);
}

.bg-green-section h2,
.bg-green-section h3 {
  color: var(--color-white);
}

.bg-green-section p {
  color: rgba(255,255,255,0.88);
}

.bg-green-section .section-label {
  color: var(--color-accent-yellow);
}

.bg-yellow-section {
  background: var(--color-accent-yellow);
}

.bg-yellow-section h2,
.bg-yellow-section h3 {
  color: var(--color-dark);
}

.bg-blue-section {
  background: var(--color-accent-blue);
}

/* ===================== STAT STRIP ===================== */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

.stat-item {
  background: var(--color-white);
  padding: 28px 20px;
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  color: var(--color-primary);
  display: block;
}

.stat-item__label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

/* ===================== ICON FEATURE LIST ===================== */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(46,139,87,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-primary);
}

.feature-text h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* ===================== TIMELINE ===================== */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 0;
  width: 2px;
  background: var(--color-primary);
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-primary);
}

.timeline-item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* ===================== EDITORIAL PANEL ===================== */
.editorial-panel {
  background: var(--color-white);
  border-left: 5px solid var(--color-primary);
  border-radius: 0 10px 10px 0;
  padding: 28px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.editorial-panel--yellow {
  border-left-color: var(--color-accent-yellow);
}

.editorial-panel--blue {
  border-left-color: var(--color-accent-blue);
}

.editorial-panel--red {
  border-left-color: var(--color-accent-red);
}

.editorial-panel h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.editorial-panel p {
  font-size: 0.92rem;
  color: var(--color-text-light);
}

/* ===================== DISCLAIMER BOX ===================== */
.disclaimer-box {
  background: rgba(135,206,235,0.15);
  border: 1px solid var(--color-accent-blue);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 40px 0;
}

.disclaimer-box__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4a7e99;
  margin-bottom: 10px;
}

.disclaimer-box p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
  background: var(--color-primary);
  padding: 110px 24px 60px;
  text-align: center;
}

.page-hero h1 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ===================== BREADCRUMB ===================== */
.breadcrumb-wrap {
  background: rgba(0,0,0,0.12);
  padding: 10px 24px;
  text-align: center;
}

.breadcrumb-wrap a,
.breadcrumb-wrap span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-heading);
  font-weight: 600;
}

.breadcrumb-wrap a:hover {
  color: var(--color-accent-yellow);
}

.breadcrumb-wrap span {
  margin: 0 6px;
}

/* ===================== TABLE ===================== */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.styled-table th {
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 14px 18px;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.styled-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-light);
}

.styled-table tr:last-child td {
  border-bottom: none;
}

.styled-table tr:nth-child(even) td {
  background: rgba(46,139,87,0.04);
}

/* ===================== FAQ ===================== */
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
}

.faq-question {
  width: 100%;
  background: var(--color-white);
  border: none;
  padding: 18px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(46,139,87,0.04);
}

.faq-question .faq-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(46,139,87,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}

.faq-question .faq-arrow svg {
  width: 12px;
  height: 12px;
  fill: var(--color-primary);
  transition: transform 0.3s;
}

.faq-item.open .faq-question .faq-arrow {
  background: var(--color-primary);
  transform: none;
}

.faq-item.open .faq-question .faq-arrow svg {
  fill: var(--color-white);
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--color-text-light);
  background: var(--color-white);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ===================== CONTACT FORM ===================== */
.contact-form-wrap {
  background: var(--color-white);
  border-radius: 14px;
  padding: 40px 44px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(46,139,87,0.12);
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 130px;
}

.form-disclaimer {
  background: rgba(240,230,140,0.2);
  border: 1px solid var(--color-accent-yellow);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 22px;
  font-size: 0.87rem;
  color: #6b5c00;
  font-family: var(--font-heading);
  font-weight: 600;
}

/* ===================== FOOTER ===================== */
#main-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-brand h3 {
  color: var(--color-white);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.footer-disclaimer-badge {
  display: inline-block;
  background: rgba(240,230,140,0.15);
  border: 1px solid rgba(240,230,140,0.4);
  color: var(--color-accent-yellow);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 4px;
}

.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--color-accent-yellow);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--color-primary-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-hours {
  margin-top: 18px;
}

.footer-hours h5 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-hours p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px;
  padding: 20px 24px;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--color-accent-yellow);
}

.footer-bottom-wrap {
  background: var(--color-dark);
}

/* ===================== COOKIE BANNER ===================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(26,26,26,0.97);
  border-top: 3px solid var(--color-primary);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-banner.visible {
  transform: translateY(0);
}

.cookie-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  flex: 1;
  min-width: 220px;
  line-height: 1.55;
}

.cookie-text strong {
  color: var(--color-white);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 9px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-btn:hover {
  opacity: 0.85;
}

.cookie-btn--accept {
  background: var(--color-primary);
  color: var(--color-white);
}

.cookie-btn--decline {
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
}

.cookie-btn--policy {
  background: transparent;
  color: var(--color-accent-yellow);
  border: 1px solid rgba(240,230,140,0.4);
}

/* ===================== ABOUT PAGE ===================== */
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* ===================== POLICY PAGES ===================== */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--color-primary);
}

.policy-content h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 10px;
}

.policy-content p {
  margin-bottom: 14px;
  color: var(--color-text-light);
}

.policy-content ul {
  margin-bottom: 18px;
}

.policy-content ul li {
  color: var(--color-text-light);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.policy-meta {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

/* ===================== THANK YOU ===================== */
.thank-you-wrap {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: var(--color-bg);
}

.thank-you-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 56px 48px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--color-border);
}

.thank-you-icon {
  width: 72px;
  height: 72px;
  background: rgba(46,139,87,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.thank-you-icon svg {
  width: 34px;
  height: 34px;
  fill: var(--color-primary);
}

.thank-you-card h1 {
  font-size: 2rem;
  margin-bottom: 14px;
  color: var(--color-primary);
}

.thank-you-card p {
  color: var(--color-text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ===================== SECTION SEPARATOR ===================== */
.sep-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 48px 0;
}

.sep-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
}

.sep-dot--primary {
  background: var(--color-primary);
  width: 24px;
  border-radius: 4px;
}

/* ===================== ANIMATIONS ===================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* ===================== HIGHLIGHT LIST ===================== */
.highlight-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.highlight-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 56px 0;
  }

  .two-col-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .two-col-section.reverse {
    direction: ltr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .card-grid--2 {
    grid-template-columns: 1fr;
  }

  .card-grid--4 {
    grid-template-columns: 1fr;
  }

  .about-mission-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-nav,
  .header-cta {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .hero-content {
    padding: 60px 24px;
  }

  .contact-form-wrap {
    padding: 28px 22px;
  }

  .two-col-img img {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .thank-you-card {
    padding: 36px 24px;
  }
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--color-dark);
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 0 20px 0;
}

.faq-answer p {
  font-size: 0.93rem;
  color: var(--color-text-light);
  line-height: 1.75;
}

.faq-answer a {
  color: var(--color-primary);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faq-sidebar-sticky {
    position: static;
  }
}
