@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
    --primary: #2F4F4F;
    --primary-dark: #1a2f2f;
    --primary-light: #3d6363;
    --accent-gray: #A9A9A9;
    --accent-blue: #B0C4DE;
    --accent-green: #8FBC8F;
    --bg-main: #F5F5F5;
    --bg-section: #EFEFEF;
    --border-light: #E0E0E0;
    --border-medium: #D3D3D3;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #7a7a7a;
    --text-light: #F5F5F5;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
    --radius: 4px;
    --container-max: 1320px;
    --section-gap: 96px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Lora', serif;
    font-weight: 600;
    line-height: 1.25;
    color: var(--primary);
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); letter-spacing: -0.25px; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; }

a { color: var(--primary); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--accent-blue); }

img { display: block; max-width: 100%; height: auto; }

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-gap { padding: var(--section-gap) 0; }

.divider {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 48px 0;
}

.tag {
    display: inline-block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-green);
    margin-bottom: 12px;
}

.section-label {
    display: block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gray);
    margin-bottom: 16px;
}

/* ============ HEADER ============ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary);
    border-bottom: 1px solid var(--primary-dark);
    transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.25); }

.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;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border: 2px solid var(--accent-green);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark svg { width: 20px; height: 20px; fill: var(--accent-green); }

.logo-text {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(245,245,245,0.8);
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: background 0.25s, color 0.25s;
    letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255,255,255,0.08);
    color: var(--text-light);
}

.nav-links a.active { border-bottom: 2px solid var(--accent-green); border-radius: 0; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: 0.3s;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,30,30,0.88) 0%, rgba(15,30,30,0.45) 50%, rgba(15,30,30,0.15) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero h1 { color: var(--text-light); text-shadow: 0 2px 12px rgba(0,0,0,0.4); margin-bottom: 24px; }
.hero p { color: rgba(245,245,245,0.85); font-size: 1.125rem; max-width: 620px; margin-bottom: 32px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(143,188,143,0.15);
    border: 1px solid rgba(143,188,143,0.4);
    color: var(--accent-green);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-green);
    color: var(--primary-dark);
    border-color: var(--accent-green);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-green);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(245,245,245,0.5);
}

.btn-outline:hover {
    border-color: var(--text-light);
    color: var(--text-light);
}

.btn-dark {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
}

.btn-dark:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--text-light);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border-color: var(--border-medium);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ============ CARDS ============ */
.card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.card-body { padding: 28px; }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.9375rem; }

/* ============ TWO COLUMN ============ */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.two-col.reverse .two-col-img { order: -1; }

.two-col-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.two-col-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.two-col-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(143,188,143,0.2);
    border-radius: var(--radius);
    pointer-events: none;
}

.two-col-text h2 { margin-bottom: 20px; }
.two-col-text p { margin-bottom: 16px; }
.two-col-text h3 { margin-top: 28px; margin-bottom: 12px; }

/* ============ SECTION DARK ============ */
.section-dark {
    background: var(--primary);
    color: var(--text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--text-light); }

.section-dark p { color: rgba(245,245,245,0.82); }

.section-dark .tag { color: var(--accent-green); }
.section-dark .divider { border-color: rgba(255,255,255,0.12); }

/* ============ SECTION ALT ============ */
.section-alt { background: var(--bg-section); }

/* ============ GRID CARDS ============ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

/* ============ ICON BOX ============ */
.icon-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: box-shadow 0.3s;
}

.icon-box:hover { box-shadow: var(--shadow-md); }

.icon-box-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(143,188,143,0.12);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box-icon svg { width: 22px; height: 22px; stroke: var(--accent-green); fill: none; }
.icon-box h3 { margin-bottom: 8px; font-size: 1.05rem; }
.icon-box p { font-size: 0.9rem; }

/* ============ STAT BOX ============ */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-medium); }

.stat-item {
    background: var(--white);
    padding: 36px 28px;
    text-align: center;
}

.stat-num {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label { font-size: 0.875rem; color: var(--text-muted); letter-spacing: 0.3px; }

/* ============ TIMELINE ============ */
.timeline { position: relative; padding-left: 40px; }

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--border-medium);
}

.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: -36px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--accent-green);
    border-radius: 50%;
    border: 3px solid var(--bg-main);
    box-shadow: 0 0 0 2px var(--accent-green);
}

.timeline-year {
    font-family: 'Lora', serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.timeline-item h3 { margin-bottom: 8px; font-size: 1.05rem; }
.timeline-item p { font-size: 0.9375rem; }

/* ============ TABLE ============ */
.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.info-table th {
    background: var(--primary);
    color: var(--text-light);
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 20px;
    text-align: left;
}

.info-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
}

.info-table tr:last-child td { border-bottom: none; }
.info-table tr:nth-child(even) td { background: var(--bg-section); }

/* ============ DISCLAIMER BOX ============ */
.disclaimer-box {
    border-left: 4px solid var(--accent-blue);
    background: rgba(176,196,222,0.08);
    padding: 24px 28px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 40px 0;
}

.disclaimer-box p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.disclaimer-box strong { color: var(--text-secondary); }

/* ============ MYTH FACT ============ */
.myth-fact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.myth-card, .fact-card {
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid;
}

.myth-card {
    background: rgba(169,169,169,0.06);
    border-color: var(--border-medium);
}

.fact-card {
    background: rgba(143,188,143,0.06);
    border-color: rgba(143,188,143,0.3);
}

.myth-card .badge, .fact-card .badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 12px;
}

.myth-card .badge { background: rgba(169,169,169,0.15); color: var(--accent-gray); }
.fact-card .badge { background: rgba(143,188,143,0.2); color: #5a9a5a; }

/* ============ GLOSSARY ============ */
.glossary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.glossary-item {
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--accent-green);
    border-radius: var(--radius);
}

.glossary-term {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.glossary-def { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ============ STEPS ============ */
.steps-list { counter-reset: steps; list-style: none; }

.step-item {
    counter-increment: steps;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid var(--border-light);
}

.step-item:last-child { border-bottom: none; }

.step-num {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--text-light);
    font-family: 'Lora', serif;
    font-size: 1.375rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-item h3 { margin-bottom: 8px; }
.step-item p { font-size: 0.9375rem; }

/* ============ CTA SECTION ============ */
.cta-section {
    background: var(--primary-dark);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 { color: var(--text-light); margin-bottom: 16px; }
.cta-section p { color: rgba(245,245,245,0.75); max-width: 560px; margin: 0 auto 32px; }

/* ============ ACCORDION ============ */
.accordion-item {
    border-bottom: 1px solid var(--border-light);
}

.accordion-btn {
    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: 'Lora', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.25s;
}

.accordion-btn:hover { color: var(--primary-light); }

.accordion-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 1px solid var(--border-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, border-color 0.25s;
}

.accordion-icon svg { width: 12px; height: 12px; stroke: var(--primary); fill: none; transition: transform 0.3s; }

.accordion-btn.open .accordion-icon { background: var(--primary); border-color: var(--primary); }
.accordion-btn.open .accordion-icon svg { stroke: var(--text-light); transform: rotate(45deg); }

.accordion-body {
    display: none;
    padding: 0 0 24px 0;
}

.accordion-body p { font-size: 0.9375rem; }

/* ============ PAGE HERO ============ */
.page-hero {
    background: var(--primary);
    padding: 120px 0 64px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238FBC8F' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--text-light); margin-bottom: 16px; }
.page-hero p { color: rgba(245,245,245,0.78); max-width: 640px; font-size: 1.0625rem; }

/* ============ BREADCRUMB ============ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin-bottom: 20px;
    font-size: 0.8125rem;
}

.breadcrumb li { color: rgba(245,245,245,0.5); }
.breadcrumb li a { color: rgba(245,245,245,0.7); transition: color 0.25s; }
.breadcrumb li a:hover { color: var(--text-light); }
.breadcrumb li::after { content: '/'; margin-left: 8px; color: rgba(245,245,245,0.3); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb li:last-child { color: rgba(245,245,245,0.85); }

/* ============ FORM ============ */
.form-group { margin-bottom: 24px; }

.form-label {
    display: block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--white);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius);
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    appearance: none;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(47,79,79,0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--primary-dark);
    color: rgba(245,245,245,0.75);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text { font-size: 1.375rem; color: var(--text-light); }

.footer-desc { font-size: 0.875rem; color: rgba(245,245,245,0.6); line-height: 1.7; margin-top: 16px; max-width: 300px; }

.footer-edu-msg {
    margin-top: 20px;
    font-size: 0.8rem;
    font-style: italic;
    color: var(--accent-green);
    border-top: 1px solid rgba(143,188,143,0.2);
    padding-top: 16px;
}

.footer-col h4 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245,245,245,0.5);
    margin-bottom: 20px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: 0.875rem;
    color: rgba(245,245,245,0.65);
    transition: color 0.25s;
}

.footer-links a:hover { color: var(--text-light); }

.footer-contact-list { list-style: none; }

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(245,245,245,0.65);
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-contact-list svg { flex-shrink: 0; width: 16px; height: 16px; stroke: var(--accent-green); fill: none; margin-top: 2px; }

.footer-hours {
    font-size: 0.8rem;
    color: rgba(245,245,245,0.5);
    margin-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 12px;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.8125rem;
    color: rgba(245,245,245,0.4);
}

.footer-policies {
    display: flex;
    gap: 20px;
    list-style: none;
    flex-wrap: wrap;
}

.footer-policies a {
    font-size: 0.8125rem;
    color: rgba(245,245,245,0.45);
    transition: color 0.25s;
}

.footer-policies a:hover { color: rgba(245,245,245,0.8); }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--primary-dark);
    border-top: 1px solid rgba(143,188,143,0.3);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
    transition: transform 0.4s ease;
}

.cookie-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 260px;
    font-size: 0.875rem;
    color: rgba(245,245,245,0.78);
    margin: 0;
    line-height: 1.55;
}

.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

.btn-cookie-accept,
.btn-cookie-reject,
.btn-cookie-more {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.btn-cookie-accept {
    background: var(--accent-green);
    color: var(--primary-dark);
    border: 2px solid var(--accent-green);
}

.btn-cookie-accept:hover { background: transparent; color: var(--accent-green); }

.btn-cookie-reject {
    background: transparent;
    color: rgba(245,245,245,0.7);
    border: 2px solid rgba(245,245,245,0.25);
}

.btn-cookie-reject:hover { border-color: rgba(245,245,245,0.6); color: var(--text-light); }

.btn-cookie-more {
    background: transparent;
    color: var(--accent-blue);
    border: none;
    padding: 8px 4px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.btn-cookie-more:hover { color: var(--text-light); }

/* ============ CONTENT PAGE ============ */
.content-wrapper { max-width: 820px; }

.content-wrapper h2 { margin-top: 48px; margin-bottom: 16px; }
.content-wrapper h3 { margin-top: 32px; margin-bottom: 12px; }
.content-wrapper p { margin-bottom: 18px; }
.content-wrapper ul, .content-wrapper ol { margin: 16px 0 16px 24px; }
.content-wrapper li { margin-bottom: 8px; font-size: 0.9375rem; color: var(--text-secondary); }
.content-wrapper strong { color: var(--text-primary); }

/* ============ KEY ASPECTS BOX ============ */
.key-aspects-box {
    background: var(--primary);
    color: var(--text-light);
    border-radius: var(--radius);
    padding: 36px;
    margin: 40px 0;
}

.key-aspects-box h3 { color: var(--text-light); margin-bottom: 20px; }

.key-aspect-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.key-aspect-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(245,245,245,0.82);
}

.key-aspect-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    margin-top: 7px;
}

/* ============ SEARCH BAR ============ */
.search-bar {
    position: relative;
    max-width: 480px;
}

.search-bar input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9375rem;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius);
    background: var(--white);
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.search-bar input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(47,79,79,0.1);
}

.search-bar svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    stroke: var(--accent-gray);
    fill: none;
}

/* ============ THANK YOU ============ */
.thankyou-wrap {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

.thankyou-icon {
    width: 72px;
    height: 72px;
    background: rgba(143,188,143,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    border: 2px solid rgba(143,188,143,0.3);
}

.thankyou-icon svg { width: 36px; height: 36px; stroke: var(--accent-green); fill: none; }

/* ============ HEADER NAV BODY OFFSET ============ */
body { padding-top: 68px; }

/* ============ DECORATIVE LINES ============ */
.deco-line {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--accent-green);
    margin-bottom: 24px;
    border-radius: 2px;
}

.deco-line-light {
    display: block;
    width: 48px;
    height: 3px;
    background: rgba(143,188,143,0.4);
    margin-bottom: 24px;
    border-radius: 2px;
}

/* ============ FEATURE CALLOUT ============ */
.feature-callout {
    border-left: 3px solid var(--accent-green);
    padding: 20px 24px;
    background: rgba(143,188,143,0.05);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 24px 0;
}

.feature-callout p { font-size: 1rem; font-style: italic; color: var(--text-secondary); margin: 0; }

/* ============ LEGAL BLOCK ============ */
.legal-top {
    background: rgba(176,196,222,0.1);
    border: 1px solid rgba(176,196,222,0.3);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 40px;
}

.legal-top p { font-size: 0.875rem; color: var(--text-secondary); margin: 0; }

.clause-block { margin-bottom: 36px; }
.clause-num {
    font-family: 'Lora', serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-gray);
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

/* ============ LEGAL LAYOUT ============ */
.legal-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 64px;
    align-items: flex-start;
}

.legal-toc { position: sticky; top: 88px; }

.toc-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px 20px;
}

.toc-list { list-style: none; }

.toc-list li { margin-bottom: 10px; }

.toc-list a {
    font-size: 0.8375rem;
    color: var(--text-muted);
    transition: color 0.25s;
    line-height: 1.4;
}

.toc-list a:hover { color: var(--primary); }

.legal-content h2 { margin-top: 0; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); }
.legal-content h3 { margin-top: 28px; margin-bottom: 12px; }
.legal-content p { margin-bottom: 16px; }
.legal-content section { margin-bottom: 0; }

.legal-list { list-style: none; margin: 16px 0; padding: 0; }
.legal-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.legal-list li::before {
    content: '';
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    background: var(--accent-green);
    border-radius: 50%;
    margin-top: 8px;
}

.legal-ordered { list-style: decimal; padding-left: 20px; }
.legal-ordered li::before { display: none; }
.legal-ordered li { display: list-item; }

.contact-block {
    background: var(--bg-section);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-top: 12px;
}

.contact-block p { font-size: 0.9375rem; line-height: 1.75; margin: 0; }

.legal-disclaimer-top {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(176,196,222,0.08);
    border: 1px solid rgba(176,196,222,0.35);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 40px;
}

.legal-disclaimer-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(176,196,222,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-disclaimer-icon svg { width: 26px; height: 26px; stroke: var(--accent-blue); }

/* ============ COOKIE TYPE BOX ============ */
.cookie-type-box {
    background: var(--bg-section);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px 28px;
}

.cookie-type-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cookie-type-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
}

.cookie-type-essential {
    background: rgba(143,188,143,0.2);
    color: #5a9a5a;
}

.cookie-table code {
    font-size: 0.82rem;
    background: rgba(47,79,79,0.07);
    padding: 2px 6px;
    border-radius: 2px;
    font-family: monospace;
    color: var(--primary);
}

/* ============ CONTACT LAYOUT ============ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 64px;
    align-items: flex-start;
}

.contact-form-area {}

.contact-info-area {}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.contact-detail-list { list-style: none; margin: 0 0 24px; }

.contact-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-detail-list li:last-child { border-bottom: none; }

.contact-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(143,188,143,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg { width: 18px; height: 18px; stroke: var(--accent-green); fill: none; }

.contact-detail-list strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-gray);
    margin-bottom: 4px;
}

.contact-detail-list span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.hours-box {
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

.hours-table {
    width: 100%;
    font-size: 0.875rem;
}

.hours-table td { padding: 5px 0; color: var(--text-secondary); }
.hours-table td:last-child { text-align: right; color: var(--text-muted); }

.edu-notice-box {
    margin-top: 16px;
    background: var(--primary);
    border-radius: var(--radius);
    padding: 18px 20px;
    text-align: center;
}

.edu-notice-box p {
    font-size: 0.8125rem;
    color: rgba(245,245,245,0.7);
    margin: 0;
    font-style: italic;
    line-height: 1.5;
}

/* ============ THANK YOU PAGE ============ */
.thankyou-section {
    min-height: calc(100vh - 68px - 400px);
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.thankyou-card {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 48px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-icon svg { width: 80px; height: 80px; }

.thankyou-card h1 { font-size: 2rem; margin-bottom: 16px; }

.thankyou-lead {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.thankyou-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.thankyou-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.thankyou-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.thankyou-links span {
    font-size: 0.8125rem;
    color: var(--text-muted);
    width: 100%;
}

.thankyou-links a {
    font-size: 0.875rem;
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============ HEALTH DISCLAIMER TOP ============ */
.health-disclaimer-top {
    display: flex;
    gap: 24px;
    align-items: center;
    background: var(--primary);
    border-radius: var(--radius);
    padding: 32px 36px;
}

.health-disclaimer-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(176,196,222,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.not-medical-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-blue);
    background: rgba(176,196,222,0.12);
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 12px;
}

.health-disclaimer-label p {
    color: rgba(245,245,245,0.82);
    font-size: 1rem;
    margin: 0;
    line-height: 1.65;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
    .legal-layout { grid-template-columns: 220px 1fr; gap: 40px; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px) {
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .two-col.reverse .two-col-img { order: 0; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .key-aspect-list { grid-template-columns: 1fr; }
    .myth-fact-grid { grid-template-columns: 1fr; }
    .glossary-grid { grid-template-columns: 1fr; }
    .legal-layout { grid-template-columns: 1fr; }
    .legal-toc { position: static; }
    .health-disclaimer-top { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
    :root { --section-gap: 64px; }
    .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 68px; left: 0; right: 0; background: var(--primary-dark); padding: 12px 0; }
    .nav-links.open { display: flex; }
    .nav-links a { border-radius: 0; padding: 12px 24px; }
    .nav-toggle { display: flex; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .hero { min-height: 70vh; }
    .step-item { grid-template-columns: 48px 1fr; gap: 16px; }
    .cookie-inner { flex-direction: column; align-items: flex-start; }
    .two-col-img img { height: 280px; }
    .thankyou-card { padding: 36px 24px; }
    .legal-disclaimer-top { flex-direction: column; }
}

@media (max-width: 480px) {
    .stat-grid { grid-template-columns: 1fr; }
    .container { padding: 0 16px; }
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.4rem; }
    .thankyou-actions { flex-direction: column; }
}
