@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

:root {
    --primary: #34495E;
    --secondary: #ECF0F1;
    --accent-green: #2ECC71;
    --accent-orange: #E67E22;
    --accent-yellow: #F39C12;
    --neutral-dark: #7F8C8D;
    --neutral-light: #BDC3C7;
    --bg-main: #F8F9FA;
    --text-main: #2C3E50;
    --text-secondary: #7F8C8D;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(52,73,94,0.08);
    --shadow-md: 0 6px 24px rgba(52,73,94,0.13);
    --shadow-lg: 0 16px 48px rgba(52,73,94,0.18);
    --radius: 4px;
    --container: 1200px;
    --transition: 0.2s ease;
}

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

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

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

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--accent-green); }

ul { list-style: none; }

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

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

.section-pad {
    padding: 100px 0;
}

.section-pad-sm {
    padding: 64px 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 24px;
    max-width: 1440px;
    margin: 0 auto;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white) !important;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: opacity var(--transition);
}

.logo:hover { opacity: 0.85; color: var(--white) !important; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--neutral-light);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: var(--radius);
    position: relative;
    transition: color var(--transition);
    letter-spacing: 0.02em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: calc(100% - 28px); }

.nav-links a.active {
    color: var(--accent-green);
}

.nav-links a.active::after {
    width: calc(100% - 28px);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}

.site-main {
    padding-top: 70px;
}

.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(52,73,94,0.82) 0%, rgba(52,73,94,0.55) 60%, rgba(52,73,94,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    padding: 0 24px;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-content h2 {
    color: var(--neutral-light);
    font-weight: 400;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-family: 'Open Sans', sans-serif;
    max-width: 640px;
    margin: 0 auto 40px;
}

.hero-accent {
    width: 64px;
    height: 4px;
    background: var(--accent-green);
    margin: 0 auto 32px;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background var(--transition), box-shadow var(--transition), transform 0.15s ease;
    letter-spacing: 0.03em;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-green);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(46,204,113,0.3);
}

.btn-primary:hover {
    background: #27ae60;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(46,204,113,0.4);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border-color: var(--white);
}

.section-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-green);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    margin-bottom: 20px;
}

.section-divider {
    width: 48px;
    height: 3px;
    background: var(--accent-orange);
    margin-bottom: 32px;
    border-radius: 2px;
}

.section-divider-center {
    margin-left: auto;
    margin-right: auto;
}

.text-center { text-align: center; }
.text-balance { text-wrap: balance; }

.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-white { background-color: var(--white); }

.section-bg-alt {
    background-color: var(--secondary);
}

.section-bg-dark {
    background-color: var(--primary);
}

.section-bg-dark h1,
.section-bg-dark h2,
.section-bg-dark h3 {
    color: var(--white);
}

.section-bg-dark p {
    color: var(--neutral-light);
}

.section-bg-dark .section-label {
    color: var(--accent-green);
}

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

.two-col-reverse { direction: rtl; }
.two-col-reverse > * { direction: ltr; }

.two-col-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.panel-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}

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

.panel-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.panel-card-body {
    padding: 28px 24px;
}

.panel-card-body h3 {
    margin-bottom: 12px;
}

.panel-card-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.key-list {
    list-style: none;
    padding: 0;
}

.key-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--secondary);
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
}

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

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

.stat-strip {
    background: var(--primary);
    padding: 48px 0;
}

.stat-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item-label {
    font-size: 0.9rem;
    color: var(--neutral-light);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.glossary-section {
    background: var(--secondary);
    padding: 100px 0;
}

.glossary-rail {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.glossary-rail::-webkit-scrollbar {
    height: 4px;
}

.glossary-rail::-webkit-scrollbar-track {
    background: var(--neutral-light);
    border-radius: 2px;
}

.glossary-rail::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

.glossary-card {
    flex-shrink: 0;
    width: 240px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 20px;
    box-shadow: var(--shadow-sm);
    scroll-snap-align: start;
    border-top: 3px solid var(--accent-green);
    transition: box-shadow var(--transition), transform var(--transition);
}

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

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

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

.myths-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.myth-item {
    padding: 32px 0;
    border-bottom: 1px solid var(--neutral-light);
}

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

.myth-item h3 {
    color: var(--accent-orange);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.myth-item p {
    color: var(--text-main);
    margin-bottom: 0;
}

.info-panel {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 40px;
    border-left: 4px solid var(--accent-green);
}

.approach-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.approach-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--accent-yellow);
    transition: box-shadow var(--transition), transform var(--transition);
}

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

.approach-card h3 {
    margin-bottom: 12px;
    color: var(--primary);
}

.approach-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.nav-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.nav-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    display: block;
}

.nav-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-bottom-color: var(--accent-orange);
    color: var(--primary);
}

.nav-card h3 {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 1.1rem;
}

.nav-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.concluding-block {
    background: var(--primary);
    padding: 80px 0;
    text-align: center;
}

.concluding-block h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.concluding-block p {
    color: var(--neutral-light);
    max-width: 640px;
    margin: 0 auto;
}

.exploration-section {
    position: relative;
    overflow: hidden;
}

.exploration-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exploration-overlay {
    position: absolute;
    inset: 0;
    background: rgba(52,73,94,0.88);
}

.exploration-content {
    position: relative;
    z-index: 2;
}

.exploration-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.exploration-content p {
    color: var(--neutral-light);
}

footer {
    background-color: var(--primary);
    padding: 64px 0 0;
    color: var(--neutral-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.footer-brand p {
    color: var(--neutral-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-col h3 {
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul { list-style: none; padding: 0; }

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

.footer-col ul li a {
    color: var(--neutral-light);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-green);
}

.footer-contact-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--neutral-light);
    line-height: 1.5;
}

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

.footer-hours {
    font-size: 0.875rem;
    color: var(--neutral-dark);
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: var(--neutral-dark);
    font-size: 0.825rem;
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--neutral-dark);
    font-size: 0.825rem;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--accent-green); }

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: var(--primary);
    border-top: 3px solid var(--accent-green);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
    padding: 20px 0;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(110%);
}

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

.cookie-banner-text {
    color: var(--neutral-light);
    font-size: 0.875rem;
    line-height: 1.6;
    flex: 1;
    min-width: 200px;
}

.cookie-banner-text a {
    color: var(--accent-green);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 22px;
    border-radius: var(--radius);
    cursor: pointer;
    border: none;
    transition: background var(--transition), transform 0.15s ease;
    letter-spacing: 0.02em;
}

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

.cookie-btn-accept:hover {
    background: #27ae60;
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--neutral-light);
    border: 1px solid rgba(255,255,255,0.25);
}

.cookie-btn-decline:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-1px);
}

.cookie-btn-learn {
    background: transparent;
    color: var(--accent-green);
    border: 1px solid var(--accent-green);
    text-decoration: none;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 22px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--transition);
    letter-spacing: 0.02em;
}

.cookie-btn-learn:hover {
    background: rgba(46,204,113,0.1);
    color: var(--accent-green);
}

.page-hero {
    position: relative;
    background: var(--primary);
    padding: 96px 0 80px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 47px,
        rgba(255,255,255,0.02) 47px,
        rgba(255,255,255,0.02) 48px
    );
}

.page-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero-content p {
    color: var(--neutral-light);
    font-size: 1.1rem;
    max-width: 580px;
    margin-bottom: 0;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.825rem;
}

.breadcrumb a {
    color: var(--neutral-light);
    text-decoration: none;
    transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--accent-green); }

.breadcrumb span {
    color: var(--neutral-dark);
}

.prose h2 {
    margin-top: 48px;
    margin-bottom: 16px;
}

.prose h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.prose p {
    margin-bottom: 16px;
}

.prose ul, .prose ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.prose ul li {
    list-style: disc;
    margin-bottom: 6px;
    color: var(--text-main);
    line-height: 1.7;
}

.prose ol li {
    list-style: decimal;
    margin-bottom: 6px;
    color: var(--text-main);
    line-height: 1.7;
}

.toc-box {
    background: var(--secondary);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin-bottom: 48px;
    border-left: 4px solid var(--primary);
}

.toc-box h3 {
    margin-bottom: 16px;
    font-size: 1rem;
}

.toc-box ol {
    padding-left: 20px;
}

.toc-box ol li {
    margin-bottom: 8px;
}

.toc-box ol li a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}

.toc-box ol li a:hover { color: var(--accent-green); }

.disclaimer-box {
    background: rgba(230,126,34,0.08);
    border: 2px solid var(--accent-orange);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 48px;
}

.disclaimer-box h2 {
    color: var(--accent-orange);
    margin-bottom: 12px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.9rem;
}

.data-table th {
    background: var(--primary);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 14px 16px;
    text-align: left;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--secondary);
    color: var(--text-main);
    vertical-align: top;
}

.data-table tr:nth-child(even) td {
    background: var(--secondary);
}

.data-table tr:hover td {
    background: rgba(52,73,94,0.05);
}

.cookie-status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    border-radius: 24px;
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid var(--neutral-light);
}

.cookie-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-green);
    flex-shrink: 0;
}

.accordion {
    border: 1px solid var(--neutral-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--neutral-light);
}

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

.accordion-btn {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 22px 28px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background var(--transition);
}

.accordion-btn:hover {
    background: var(--secondary);
}

.accordion-btn.active {
    background: var(--secondary);
    color: var(--accent-green);
}

.accordion-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--neutral-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), border-color var(--transition);
    font-size: 0.9rem;
    color: var(--neutral-dark);
    font-weight: 700;
    line-height: 1;
}

.accordion-btn.active .accordion-icon {
    transform: rotate(45deg);
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--white);
}

.accordion-body.open {
    max-height: 600px;
}

.accordion-body-inner {
    padding: 8px 28px 24px;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.75;
}

.faq-sidebar {
    background: var(--secondary);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: sticky;
    top: 90px;
}

.faq-sidebar h3 {
    margin-bottom: 16px;
    font-size: 1rem;
}

.faq-sidebar ul {
    list-style: none;
    padding: 0;
}

.faq-sidebar ul li {
    margin-bottom: 10px;
}

.faq-sidebar ul li a {
    font-size: 0.9rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
    line-height: 1.5;
    display: block;
}

.faq-sidebar ul li a:hover {
    color: var(--accent-green);
}

.faq-search-mock {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--neutral-light);
    border-radius: var(--radius);
    padding: 0 16px;
    margin-bottom: 40px;
    gap: 12px;
}

.faq-search-mock input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-main);
    background: transparent;
    pointer-events: none;
}

.faq-search-mock input::placeholder {
    color: var(--neutral-light);
}

.faq-search-icon {
    color: var(--neutral-dark);
    font-size: 1rem;
}

.myth-fact-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius);
    overflow: hidden;
}

.myth-fact-table th {
    padding: 16px 20px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.myth-fact-table th:first-child {
    background: rgba(230,126,34,0.15);
    color: var(--accent-orange);
}

.myth-fact-table th:last-child {
    background: rgba(46,204,113,0.12);
    color: #219a52;
}

.myth-fact-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--secondary);
    vertical-align: top;
    line-height: 1.65;
}

.myth-fact-table td:first-child {
    color: var(--neutral-dark);
    background: rgba(230,126,34,0.04);
}

.myth-fact-table td:last-child {
    color: var(--text-main);
    background: rgba(46,204,113,0.04);
    font-weight: 500;
}

.myth-fact-table tr:last-child td {
    border-bottom: none;
}

.advice-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.advice-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}

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

.advice-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.advice-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
}

.advice-card h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.advice-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.timeline {
    position: relative;
    padding-left: 32px;
}

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

.timeline-item {
    position: relative;
    padding-bottom: 32px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--accent-green);
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--accent-green);
}

.timeline-date {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.timeline-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.timeline-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.values-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.values-bullet {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.values-bullet svg {
    width: 14px;
    height: 14px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2.5;
}

.values-text strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.values-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.disclaimer-key-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.disclaimer-key-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 0;
    border-bottom: 1px solid var(--secondary);
}

.disclaimer-key-list li:last-child { border-bottom: none; }

.disclaimer-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 2px;
}

.disclaimer-item-text strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.disclaimer-item-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.cookie-types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0;
}

.cookie-type-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--accent-green);
}

.cookie-type-card h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.cookie-type-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.section-intro-block {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 40px 48px;
    margin-bottom: 64px;
}

.section-intro-block h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.section-intro-block p {
    color: var(--neutral-light);
    max-width: 640px;
    margin-bottom: 0;
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .stat-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--primary);
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
        box-shadow: var(--shadow-md);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 14px 24px;
        border-radius: 0;
    }

    .nav-links a::after { display: none; }

    .nav-toggle {
        display: flex;
    }

    .hero { height: 70vh; min-height: 480px; }

    .two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .two-col-reverse { direction: ltr; }

    .two-col-img { height: 300px; }

    .three-col {
        grid-template-columns: 1fr;
    }

    .approach-cards {
        grid-template-columns: 1fr;
    }

    .advice-cards {
        grid-template-columns: 1fr;
    }

    .nav-cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .section-pad { padding: 64px 0; }

    .stat-strip-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-types-grid {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;
    }

    .toc-box ol { padding-left: 16px; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.1rem; }

    .three-col { grid-template-columns: 1fr; }

    .stat-strip-inner { grid-template-columns: 1fr; }

    .cookie-banner-actions {
        width: 100%;
    }

    .myth-fact-table {
        font-size: 0.8rem;
    }
}
