@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

:root {
  --primary: #1A2B3C;
  --secondary: #E0E0E0;
  --accent-green: #3D7A6D;
  --accent-beige: #F5E5D5;
  --text-dark: #1A2B3C;
  --text-mid: #4a5568;
  --text-light: #718096;
  --white: #ffffff;
  --border: #d1d5db;
  --shadow-sm: 0 2px 8px rgba(26,43,60,0.08);
  --shadow-md: 0 4px 20px rgba(26,43,60,0.12);
  --shadow-lg: 0 8px 40px rgba(26,43,60,0.18);
  --radius: 4px;
  --transition: 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  line-height: 1.25;
  color: var(--primary);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
}

p {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--accent-green);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary);
}

ul, ol {
  padding-left: 1.5rem;
}

li {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container-xl {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad {
  padding: 96px 0;
}

.section-pad-sm {
  padding: 64px 0;
}

.bg-primary {
  background-color: var(--primary);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-beige {
  background-color: var(--accent-beige);
}

.bg-green {
  background-color: var(--accent-green);
}

.text-white-all, .text-white-all h1,
.text-white-all h2, .text-white-all h3,
.text-white-all p, .text-white-all li,
.text-white-all a {
  color: var(--white);
}

.text-white-all a:hover {
  color: var(--accent-beige);
}

/* ===== SITE HEADER ===== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity var(--transition);
}

.header-logo:hover {
  opacity: 0.85;
  color: var(--white);
}

.header-logo span {
  color: var(--accent-green);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--white);
  border-bottom-color: var(--accent-green);
}

.header-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.header-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 2rem 1.5rem;
}

.mobile-nav a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--white);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* ===== PAGE OFFSET ===== */
.page-offset {
  padding-top: 68px;
}

/* ===== FOOTER ===== */
#site-footer {
  background-color: var(--primary);
  color: rgba(255,255,255,0.75);
  padding-top: 64px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand-name span {
  color: var(--accent-green);
}

.footer-desc {
  font-family: 'Merriweather', serif;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}

.footer-edu-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--accent-green);
  font-style: italic;
  line-height: 1.5;
  border-left: 2px solid var(--accent-green);
  padding-left: 0.75rem;
}

.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent-green);
}

.footer-hours {
  margin-top: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-policy-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-policy-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-policy-links a:hover {
  color: rgba(255,255,255,0.75);
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--primary);
  border-top: 3px solid var(--accent-green);
  padding: 1.25rem 2rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  display: none;
}

.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.cookie-text a {
  color: var(--accent-green);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: var(--white);
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-cookie-accept {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--accent-green);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition);
  letter-spacing: 0.02em;
}

.btn-cookie-accept:hover {
  background: #2d6057;
}

.btn-cookie-reject {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.btn-cookie-reject:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-cookie-info {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: none;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: color var(--transition);
  text-decoration: underline;
  letter-spacing: 0.02em;
}

.btn-cookie-info:hover {
  color: var(--white);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--primary);
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,43,60,0.55) 0%,
    rgba(26,43,60,0.35) 40%,
    rgba(26,43,60,0.72) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 2rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-family: 'Merriweather', serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-divider {
  width: 64px;
  height: 3px;
  background: var(--accent-green);
  margin: 0 auto;
}

/* ===== SECTION LABEL ===== */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 0.75rem;
  display: block;
}

/* ===== TWO COLUMN ===== */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.two-col-layout.img-left .col-image {
  order: 1;
}

.two-col-layout.img-left .col-text {
  order: 2;
}

.two-col-layout.img-right .col-image {
  order: 2;
}

.two-col-layout.img-right .col-text {
  order: 1;
}

.col-image {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.col-image:hover img {
  transform: scale(1.03);
}

.col-text {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.col-text h2 {
  margin-bottom: 1.25rem;
}

.col-text .section-label {
  margin-bottom: 0.5rem;
}

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.info-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.info-card-body {
  padding: 1.5rem;
}

.info-card-body h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.info-card-body p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== WIDE TEXT BLOCK ===== */
.wide-text-block {
  max-width: 820px;
  margin: 0 auto;
}

.wide-text-block h2 {
  margin-bottom: 1.5rem;
}

.wide-text-block h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.highlight-accent {
  background: rgba(61,122,109,0.1);
  border-left: 4px solid var(--accent-green);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.highlight-accent p {
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 0;
  font-style: italic;
}

/* ===== BULLET LIST SECTION ===== */
.annotated-list {
  list-style: none;
  padding: 0;
}

.annotated-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.annotated-list li:last-child {
  border-bottom: none;
}

.bullet-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-green);
  flex-shrink: 0;
  margin-top: 7px;
}

.annotated-list .item-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.annotated-list .item-desc {
  font-family: 'Merriweather', serif;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 0;
}

/* ===== PULL QUOTE ===== */
.pull-quote {
  border-left: 5px solid var(--accent-green);
  padding: 1.5rem 2rem;
  background: var(--secondary);
  margin: 2.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.pull-quote blockquote {
  font-family: 'Merriweather', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--primary);
  line-height: 1.7;
  margin: 0;
}

/* ===== BLOG CARDS ===== */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 0.6rem;
}

.blog-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.blog-card-excerpt {
  font-family: 'Merriweather', serif;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}

.blog-card-read {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-top: 1rem;
  display: inline-block;
  transition: color var(--transition);
}

.blog-card:hover .blog-card-read {
  color: var(--primary);
}

/* ===== FAQ / ACCORDION VISUAL ===== */
.faq-block {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}

.faq-question {
  background: var(--white);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border: 2px solid var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-green);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  cursor: default;
}

.faq-answer {
  background: var(--secondary);
  padding: 1.25rem 1.5rem;
}

.faq-answer p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== CTA BLOCK ===== */
.cta-block {
  text-align: center;
  padding: 80px 2rem;
  background: var(--primary);
}

.cta-block h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-block p {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.btn-cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--white);
  background: transparent;
  border: 2px solid var(--accent-green);
  padding: 0.85rem 2.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.btn-cta:hover {
  background: var(--accent-green);
  color: var(--white);
}

.btn-outline-primary {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--primary);
  background: transparent;
  border: 2px solid var(--primary);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline-green {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--accent-green);
  background: transparent;
  border: 2px solid var(--accent-green);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.btn-outline-green:hover {
  background: var(--accent-green);
  color: var(--white);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--primary);
  padding: 80px 2rem 64px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
}

.page-hero-line {
  width: 56px;
  height: 3px;
  background: var(--accent-green);
  margin: 1.5rem auto 0;
}

/* ===== LEGAL PAGE ===== */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.legal-update {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent-green);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
}

.disclaimer-box {
  background: rgba(61,122,109,0.1);
  border: 2px solid var(--accent-green);
  padding: 1.75rem 2rem;
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
}

.disclaimer-box p {
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 0;
}

.disclaimer-box strong {
  color: var(--primary);
}

.warning-box {
  background: #fff3cd;
  border: 2px solid #f0b429;
  padding: 1.75rem 2rem;
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
}

.warning-box p {
  color: #7d5a00;
  margin-bottom: 0;
  font-weight: 700;
}

/* ===== INFO DISCLAIMER BLOCK ===== */
.info-disclaimer {
  background: var(--secondary);
  border-top: 3px solid var(--accent-green);
  padding: 2rem 2.5rem;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-top: 64px;
}

.info-disclaimer h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 0.75rem;
}

.info-disclaimer p {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 0;
}

/* ===== ABOUT PAGE ===== */
.mission-block {
  background: var(--primary);
  padding: 2.5rem;
  border-radius: var(--radius);
  margin: 2rem 0;
}

.mission-block h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.mission-block p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-block h3 {
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contact-detail-icon {
  width: 18px;
  height: 18px;
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-detail-text {
  font-family: 'Merriweather', serif;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.contact-form-wrapper {
  background: var(--secondary);
  padding: 2.5rem;
  border-radius: var(--radius);
}

.contact-form-wrapper h3 {
  margin-bottom: 1.5rem;
}

.form-disclaimer {
  background: rgba(61,122,109,0.1);
  border-left: 4px solid var(--accent-green);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.75rem;
}

.form-disclaimer p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-bottom: 0;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  font-family: 'Merriweather', serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent-green);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.btn-submit {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--white);
  background: var(--primary);
  border: none;
  padding: 0.85rem 2.25rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
  width: 100%;
}

.btn-submit:hover {
  background: var(--accent-green);
}

/* ===== BLOG ARTICLE ===== */
.article-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 1rem;
  display: block;
}

.article-intro {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.article-img-main {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 2rem 0;
}

.article-img-secondary {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 2rem 0;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.5rem;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-green);
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color var(--transition);
}

.article-back:hover {
  color: var(--primary);
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}

.comparison-table th {
  background: var(--primary);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.comparison-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  line-height: 1.5;
}

.comparison-table tr:nth-child(even) td {
  background: var(--secondary);
}

/* ===== FEATURE BLOCKS ===== */
.feature-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.feature-block {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.feature-block.pros {
  background: rgba(61,122,109,0.06);
  border-color: var(--accent-green);
}

.feature-block.challenges {
  background: rgba(26,43,60,0.04);
  border-color: var(--primary);
}

.feature-block h3 {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-block h3::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-green);
  flex-shrink: 0;
}

.feature-block.challenges h3::before {
  background: var(--primary);
}

.feature-block ul {
  padding-left: 0;
  list-style: none;
}

.feature-block li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9rem;
}

.feature-block li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 600;
}

.feature-block.challenges li::before {
  color: var(--primary);
}

/* ===== NUMBERED STEPS ===== */
.numbered-steps {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.numbered-steps li {
  counter-increment: step-counter;
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.numbered-steps li:last-child {
  border-bottom: none;
}

.step-num {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
  text-align: right;
}

.step-content .step-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== GLOSSARY RAIL ===== */
.article-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}

.glossary-sidebar {
  background: var(--secondary);
  padding: 2rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--accent-green);
  position: sticky;
  top: 90px;
}

.glossary-sidebar h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 1.25rem;
}

.glossary-term {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.glossary-term:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.glossary-term dt {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.glossary-term dd {
  font-family: 'Merriweather', serif;
  font-size: 0.8rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.65;
}

/* ===== THANK YOU PAGE ===== */
.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.thankyou-inner {
  max-width: 540px;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(61,122,109,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thankyou-icon svg {
  color: var(--accent-green);
}

.thankyou-inner h1 {
  margin-bottom: 1rem;
}

.thankyou-inner p {
  color: var(--text-mid);
  margin-bottom: 2rem;
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.section-divider-thick {
  width: 64px;
  height: 3px;
  background: var(--accent-green);
  margin-bottom: 1.5rem;
}

/* ===== INLINE TEXT HIGHLIGHTS ===== */
.text-highlight-green {
  background: rgba(61,122,109,0.12);
  color: var(--accent-green);
  padding: 0.15em 0.4em;
  border-radius: 2px;
  font-weight: 600;
}

/* ===== READINGS CARDS ===== */
.readings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.reading-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  transition: box-shadow var(--transition);
  text-decoration: none;
}

.reading-card:hover {
  box-shadow: var(--shadow-md);
}

.reading-card-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  flex-shrink: 0;
}

.reading-card-body {
  padding: 1.25rem 1.25rem 1.25rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reading-card-body h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.reading-card-body p {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.reading-card-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-green);
  transition: color var(--transition);
}

.reading-card:hover .reading-card-link {
  color: var(--primary);
}

/* ===== BLOG FILTER VISUAL ===== */
.blog-filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-mid);
  background: var(--white);
  cursor: default;
  transition: all var(--transition);
}

.filter-tag.active,
.filter-tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .col-text {
    padding: 48px 36px;
  }

  .card-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 64px 0;
  }

  .header-nav {
    display: none;
  }

  .header-menu-toggle {
    display: flex;
  }

  .mobile-nav.open {
    display: block;
  }

  .two-col-layout {
    grid-template-columns: 1fr;
  }

  .two-col-layout.img-left .col-image,
  .two-col-layout.img-right .col-image {
    order: 1;
    min-height: 300px;
  }

  .two-col-layout.img-left .col-text,
  .two-col-layout.img-right .col-text {
    order: 2;
  }

  .col-text {
    padding: 36px 24px;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-blocks {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .article-with-sidebar {
    grid-template-columns: 1fr;
  }

  .glossary-sidebar {
    position: static;
  }

  .readings-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    font-size: 2rem;
  }
}

.feature-block--positive,
.feature-block--neutral {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: #f9f6f2;
  border-left: 4px solid #3D7A6D;
  border-radius: 0 4px 4px 0;
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  margin-bottom: 1.25rem;
}

.feature-block--neutral {
  border-left-color: #1A2B3C;
  background: #f4f6f8;
}

.feature-block__icon {
  flex-shrink: 0;
  color: #3D7A6D;
  margin-top: 0.15rem;
}

.feature-block--neutral .feature-block__icon {
  color: #1A2B3C;
}

.feature-block__content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A2B3C;
  margin: 0 0 0.5rem;
  font-family: 'Inter', 'Roboto', sans-serif;
}

.feature-block__content p {
  margin: 0;
  font-size: 0.97rem;
  color: #3a4455;
  line-height: 1.65;
}

.numbered-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #E0E0E0;
}

.numbered-step:last-of-type {
  border-bottom: none;
}

.numbered-step__num {
  flex-shrink: 0;
  font-family: 'Inter', 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #3D7A6D;
  line-height: 1;
  min-width: 48px;
  padding-top: 0.1rem;
  opacity: 0.7;
}

.numbered-step__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1A2B3C;
  margin: 0 0 0.6rem;
  font-family: 'Inter', 'Roboto', sans-serif;
}

.numbered-step__body p {
  margin: 0 0 0.75rem;
  color: #3a4455;
  line-height: 1.65;
}

.numbered-step__body p:last-child {
  margin-bottom: 0;
}

.glossary-rail {
  margin: 2.5rem 0;
}

.glossary-rail__inner {
  background: #1A2B3C;
  color: #E0E0E0;
  border-radius: 4px;
  padding: 2rem 2.5rem;
}

.glossary-rail__inner h3 {
  font-family: 'Inter', 'Roboto', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3D7A6D;
  margin: 0 0 1.5rem;
}

.glossary-rail__inner dl {
  margin: 0;
}

.glossary-rail__inner dt {
  font-family: 'Inter', 'Roboto', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #F5E5D5;
  margin-bottom: 0.3rem;
  margin-top: 1.25rem;
}

.glossary-rail__inner dt:first-of-type {
  margin-top: 0;
}

.glossary-rail__inner dd {
  margin-left: 0;
  font-size: 0.93rem;
  color: #b0bcc8;
  line-height: 1.6;
}

.comparison-table {
  overflow-x: auto;
  margin: 1.75rem 0;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.comparison-table th {
  background: #1A2B3C;
  color: #E0E0E0;
  padding: 0.85rem 1rem;
  text-align: left;
  font-family: 'Inter', 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.comparison-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #E0E0E0;
  color: #3a4455;
  line-height: 1.55;
  vertical-align: top;
}

.comparison-table tr:nth-child(even) td {
  background: #f4f6f8;
}

@media (max-width: 480px) {
  .container-xl {
    padding: 0 1.25rem;
  }

  .col-text {
    padding: 28px 20px;
  }

  .contact-form-wrapper {
    padding: 1.75rem 1.25rem;
  }

  .reading-card {
    flex-direction: column;
  }

  .reading-card-img {
    width: 100%;
    height: 180px;
  }

  .reading-card-body {
    padding: 1rem 1.25rem 1.25rem;
  }
}
