@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #2C3E50;
    --primary-dark: #1a252f;
    --primary-mid: #34495E;
    --accent-red: #E74C3C;
    --accent-gold: #F39C12;
    --accent-green: #27AE60;
    --light-gray: #ECF0F1;
    --mid-gray: #BDC3C7;
    --text-dark: #34495E;
    --text-body: #4a5568;
    --white: #FFFFFF;
    --section-gap: 96px;
    --section-gap-sm: 64px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', Georgia, serif;
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    color: var(--primary);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-family: 'Lora', Georgia, serif; font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 600; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover { color: var(--accent-red); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { padding-left: 1.5rem; }
ul li { margin-bottom: 0.5rem; }

.container-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-gap { padding-top: var(--section-gap); padding-bottom: var(--section-gap); }
.section-gap-sm { padding-top: var(--section-gap-sm); padding-bottom: var(--section-gap-sm); }

.bg-primary { background-color: var(--primary); }
.bg-primary-dark { background-color: var(--primary-dark); }
.bg-light { background-color: var(--light-gray); }
.bg-white { background-color: var(--white); }
.text-white { color: var(--white) !important; }
.text-white h1, .text-white h2, .text-white h3 { color: var(--white); }

.accent-line {
    width: 56px;
    height: 3px;
    background: var(--accent-gold);
    display: block;
    margin-bottom: 24px;
}

.accent-line-red { background: var(--accent-red); }
.accent-line-green { background: var(--accent-green); }

.section-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 12px;
}

.section-label-red { color: var(--accent-red); }
.section-label-green { color: var(--accent-green); }

.divider {
    border: none;
    border-top: 1px solid var(--mid-gray);
    margin: 48px 0;
}

.divider-light { border-color: rgba(255,255,255,0.15); }

.btn-institutional {
    display: inline-block;
    padding: 13px 32px;
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.btn-institutional:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(44,62,80,0.18);
    text-decoration: none;
}

.btn-institutional-white {
    border-color: var(--white);
    color: var(--white);
}

.btn-institutional-white:hover {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 18px rgba(255,255,255,0.2);
}

.btn-institutional-gold {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-institutional-gold:hover {
    background: var(--accent-gold);
    color: var(--white);
}

.educational-notice {
    background: var(--light-gray);
    border-left: 4px solid var(--accent-gold);
    padding: 20px 24px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 40px 0;
}

.educational-notice strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.warning-box {
    background: #fef9f0;
    border: 2px solid var(--accent-gold);
    border-radius: 2px;
    padding: 28px 32px;
    margin-bottom: 40px;
}

.warning-box .warning-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 10px;
    display: block;
}

.compliance-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.65);
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    text-align: center;
    padding: 10px 24px;
    letter-spacing: 0.04em;
}

.compliance-bar strong {
    color: var(--accent-gold);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 2px 16px rgba(44,62,80,0.08);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(44,62,80,0.14);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    max-width: 1280px;
    margin: 0 auto;
    height: 72px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-logo-mark {
    width: 38px;
    height: 38px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-logo-mark span {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
}

.header-logo-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.header-logo-text span {
    color: var(--accent-gold);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav li a {
    display: block;
    padding: 8px 16px;
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    border-bottom: 2px solid transparent;
    transition: color 0.25s, border-color 0.25s;
}

.main-nav li a:hover,
.main-nav li a.active {
    color: var(--primary);
    border-bottom-color: var(--accent-gold);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: 2px solid var(--primary);
    width: 40px;
    height: 40px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 6px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    padding: 16px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dark);
    border-bottom: 1px solid var(--light-gray);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--primary); }

.mobile-nav.open { display: flex; }

.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
}

.footer-top {
    padding: 72px 24px 48px;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-brand-name {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-brand-name span { color: var(--accent-gold); }

.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
}

.footer-educational-bar {
    background: rgba(243,156,18,0.12);
    border-left: 3px solid var(--accent-gold);
    padding: 12px 16px;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin-top: 8px;
}

.footer-col-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: block;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 10px;
}

.footer-nav-list a {
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    transition: color 0.25s;
}

.footer-nav-list a:hover { color: var(--white); }

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent-gold);
}

.footer-contact-text {
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

.footer-hours-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin: 20px 0 10px;
}

.footer-hours-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 24px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-text {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

.footer-policy-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-policy-links a {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    transition: color 0.25s;
}

.footer-policy-links a:hover { color: rgba(255,255,255,0.8); }

.hero-block {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary-dark);
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.42;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,37,47,0.88) 0%, rgba(44,62,80,0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
    width: 100%;
}

.hero-content-inner {
    max-width: 720px;
}

.hero-kicker {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-kicker::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--accent-gold);
}

.hero-title {
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.45);
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.9; transform: scaleY(0.6); }
}

.compliance-hero-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(26,37,47,0.92);
    padding: 12px 24px;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.06em;
}

.compliance-hero-bar strong {
    color: var(--accent-gold);
    font-weight: 700;
}

.two-col-text-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.two-col-text-image.reverse {
    direction: rtl;
}

.two-col-text-image.reverse > * {
    direction: ltr;
}

.col-image-block {
    position: relative;
}

.col-image-block img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.image-caption-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    padding: 10px 16px;
    text-transform: uppercase;
}

.glossary-rail {
    border-left: 3px solid var(--light-gray);
    padding-left: 24px;
    margin-top: 32px;
}

.glossary-term {
    margin-bottom: 20px;
}

.glossary-term-word {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 4px;
}

.glossary-term-def {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pillar-card {
    background: var(--white);
    border-top: 3px solid var(--primary);
    padding: 0 0 32px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pillar-card:nth-child(2) { border-top-color: var(--accent-gold); }
.pillar-card:nth-child(3) { border-top-color: var(--accent-green); }

.pillar-card:hover {
    box-shadow: 0 8px 32px rgba(44,62,80,0.12);
    transform: translateY(-3px);
}

.pillar-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    margin-bottom: 24px;
}

.pillar-card-body {
    padding: 0 24px;
}

.pillar-card-number {
    font-family: 'Lato', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--light-gray);
    line-height: 1;
    margin-bottom: 8px;
}

.pillar-card:nth-child(2) .pillar-card-number { color: rgba(243,156,18,0.15); }
.pillar-card:nth-child(3) .pillar-card-number { color: rgba(39,174,96,0.15); }

.pillar-card-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.pillar-card-text {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.7;
}

.timeline-strip {
    margin: 40px 0;
}

.timeline-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--light-gray);
    align-items: flex-start;
}

.timeline-item:last-child { border-bottom: none; }

.timeline-marker {
    width: 44px;
    height: 44px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
}

.timeline-content-title {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.timeline-content-text {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.65;
    margin: 0;
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 2px solid var(--primary);
    margin: 48px 0;
}

.stat-item {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid var(--mid-gray);
    position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-family: 'Lato', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.55;
    margin: 0;
}

.mindfulness-block {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.mindfulness-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
}

.mindfulness-overlay {
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0.84;
}

.mindfulness-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 24px;
}

.mindfulness-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.mindfulness-content .accent-line {
    margin: 0 auto 24px;
}

.mindfulness-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    line-height: 1.8;
}

.approach-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
    text-align: left;
}

.approach-item {
    background: rgba(255,255,255,0.06);
    border-left: 3px solid var(--accent-gold);
    padding: 16px 20px;
}

.approach-item-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.approach-item-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.6;
}

.faq-section .faq-item {
    border-bottom: 1px solid var(--light-gray);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
}

.faq-question-text {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
}

.faq-item.open .faq-icon {
    background: var(--primary);
    color: var(--white);
}

.faq-answer {
    display: none;
    padding: 0 0 24px;
}

.faq-answer.open {
    display: block;
}

.faq-answer-text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.75;
}

.knowledge-cta-block {
    background: var(--primary);
    padding: 80px 24px;
    text-align: center;
}

.knowledge-cta-block h2 {
    color: var(--white);
    max-width: 640px;
    margin: 0 auto 16px;
}

.knowledge-cta-block p {
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin: 0 auto 36px;
    font-size: 1.05rem;
}

.soft-cta-block {
    background: var(--light-gray);
    padding: 72px 24px;
    text-align: center;
}

.soft-cta-block .section-label {
    justify-content: center;
    display: flex;
}

.soft-cta-block h2 {
    max-width: 580px;
    margin: 0 auto 16px;
}

.soft-cta-block p {
    max-width: 520px;
    margin: 0 auto 32px;
    color: var(--text-body);
}

.blog-hero {
    position: relative;
    height: 380px;
    overflow: hidden;
    background: var(--primary-dark);
}

.blog-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,37,47,0.6) 0%, rgba(26,37,47,0.9) 100%);
}

.blog-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 24px;
    z-index: 2;
}

.blog-hero-content h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.blog-hero-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    max-width: 560px;
    margin: 0;
}

.category-bar {
    background: var(--light-gray);
    border-bottom: 2px solid var(--mid-gray);
    padding: 0 24px;
}

.category-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    overflow-x: auto;
}

.cat-tag {
    display: block;
    padding: 14px 20px;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    transition: color 0.25s, border-color 0.25s;
}

.cat-tag:hover,
.cat-tag.active {
    color: var(--primary);
    border-bottom-color: var(--accent-gold);
    text-decoration: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.blog-card:hover {
    box-shadow: 0 8px 32px rgba(44,62,80,0.12);
    transform: translateY(-3px);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-category {
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.blog-card-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.35;
    margin-bottom: 12px;
}

.blog-card-excerpt {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 20px;
}

.blog-card-link {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
    padding-bottom: 2px;
    transition: color 0.25s, border-color 0.25s;
}

.blog-card-link:hover {
    color: var(--accent-red);
    border-bottom-color: var(--accent-red);
    text-decoration: none;
}

.article-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: var(--primary-dark);
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,37,47,0.45) 0%, rgba(26,37,47,0.85) 100%);
}

.article-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.article-hero-content h1 {
    color: var(--white);
    max-width: 720px;
    margin-bottom: 12px;
}

.article-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.article-meta-item {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 24px;
    align-items: start;
}

.article-body h2 {
    margin-top: 48px;
    margin-bottom: 20px;
}

.article-body h3 {
    margin-top: 32px;
    margin-bottom: 14px;
}

.article-body p { margin-bottom: 1.4rem; }

.article-body ul {
    margin-bottom: 1.4rem;
}

.article-body ul li {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.article-body strong { color: var(--primary); }

.article-sidebar {
    position: sticky;
    top: 96px;
}

.sidebar-quote-box {
    background: var(--light-gray);
    border-left: 4px solid var(--accent-gold);
    padding: 24px;
    margin-bottom: 28px;
}

.sidebar-quote-text {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.sidebar-fact-box {
    border: 2px solid var(--primary);
    padding: 24px;
    margin-bottom: 28px;
}

.sidebar-fact-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 14px;
}

.sidebar-fact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-fact-list li {
    font-size: 0.88rem;
    color: var(--text-body);
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
    line-height: 1.55;
    margin: 0;
}

.sidebar-fact-list li:last-child { border-bottom: none; }

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
}

.comparison-table th {
    background: var(--primary);
    color: var(--white);
    padding: 14px 18px;
    text-align: left;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.comparison-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--light-gray);
    vertical-align: top;
    color: var(--text-body);
    font-family: 'Lora', serif;
    font-size: 0.92rem;
}

.comparison-table tr:nth-child(even) td {
    background: #f8f9fa;
}

.comparison-table tr:hover td {
    background: #f0f3f5;
}

.activity-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 40px 0;
    border: 2px solid var(--primary);
}

.flow-step {
    padding: 28px 22px;
    text-align: center;
    border-right: 1px solid var(--mid-gray);
    position: relative;
}

.flow-step:last-child { border-right: none; }

.flow-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.flow-step-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.flow-step-text {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

.page-hero-simple {
    background: var(--primary);
    padding: 72px 24px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-simple::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 280px;
    height: 280px;
    border: 40px solid rgba(255,255,255,0.04);
    border-radius: 50%;
}

.page-hero-simple::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -20px;
    width: 180px;
    height: 180px;
    border: 30px solid rgba(255,255,255,0.03);
    border-radius: 50%;
}

.page-hero-simple h1 {
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.page-hero-simple p {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.mission-panel {
    background: var(--primary);
    padding: 40px 36px;
    margin: 40px 0;
}

.mission-panel p {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.mission-panel-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 16px;
    display: block;
}

.contact-matrix {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
}

.contact-form-block {
    background: var(--white);
    border: 2px solid var(--primary);
    padding: 40px;
}

.contact-info-block {
    background: var(--light-gray);
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-control {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--mid-gray);
    background: var(--white);
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: border-color 0.25s;
    outline: none;
    border-radius: 0;
}

.form-control:focus {
    border-color: var(--primary);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.form-disclaimer {
    background: var(--light-gray);
    border-left: 3px solid var(--accent-gold);
    padding: 16px 20px;
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-top: 8px;
    margin-bottom: 24px;
}

.map-placeholder {
    background: var(--primary);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg, transparent, transparent 28px, rgba(255,255,255,0.04) 28px, rgba(255,255,255,0.04) 29px
    ), repeating-linear-gradient(
        90deg, transparent, transparent 28px, rgba(255,255,255,0.04) 28px, rgba(255,255,255,0.04) 29px
    );
}

.map-placeholder-text {
    position: relative;
    z-index: 1;
    text-align: center;
}

.map-placeholder-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    font-family: 'Lato', sans-serif;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.map-placeholder-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

.contact-detail {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.contact-detail-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold);
    min-width: 72px;
    margin-top: 2px;
}

.contact-detail-value {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.5;
}

.policy-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 64px;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 24px;
}

.policy-nav-panel {
    position: sticky;
    top: 96px;
    background: var(--light-gray);
    padding: 28px 24px;
    border-top: 3px solid var(--primary);
}

.policy-nav-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 16px;
    display: block;
}

.policy-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-nav-list li {
    margin-bottom: 0;
}

.policy-nav-list a {
    display: block;
    padding: 10px 0;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: color 0.25s;
}

.policy-nav-list a:hover { color: var(--primary); }

.policy-section {
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--light-gray);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    margin-bottom: 20px;
    padding-top: 8px;
}

.policy-section h3 {
    margin-top: 28px;
    margin-bottom: 12px;
}

.policy-section p { margin-bottom: 1.2rem; }

.policy-section ol {
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.policy-section ol li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-body);
}

.legal-glossary-rail {
    background: #f8f9fa;
    border-left: 3px solid var(--primary);
    padding: 24px;
    margin-top: 40px;
}

.legal-glossary-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.legal-term {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--light-gray);
}

.legal-term:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-term-word {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.legal-term-def {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.6;
}

.cookie-panel {
    background: var(--white);
    border: 1px solid var(--mid-gray);
    border-top: 3px solid var(--primary);
    padding: 32px;
    margin-bottom: 28px;
}

.cookie-panel:nth-child(2) { border-top-color: var(--accent-gold); }
.cookie-panel:nth-child(3) { border-top-color: var(--accent-green); }

.cookie-panel-title {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.cookie-diagram {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 2px solid var(--primary);
    margin: 40px 0;
}

.diagram-cell {
    padding: 24px 20px;
    border-right: 1px solid var(--mid-gray);
    text-align: center;
}

.diagram-cell:last-child { border-right: none; }

.diagram-cell-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diagram-cell-icon-inner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--white);
    border-radius: 2px;
}

.diagram-cell-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.diagram-cell-status {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    display: inline-block;
    margin: 8px 0 10px;
}

.status-essential { background: rgba(39,174,96,0.12); color: var(--accent-green); }
.status-tracking { background: rgba(231,76,60,0.1); color: var(--accent-red); }
.status-used { background: rgba(39,174,96,0.12); color: var(--accent-green); }
.status-not-used { background: rgba(231,76,60,0.1); color: var(--accent-red); }

.diagram-cell-text {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.55;
    margin: 0;
}

.thank-you-wrapper {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    text-align: center;
    background: var(--light-gray);
}

.thank-you-card {
    background: var(--white);
    padding: 72px 56px;
    max-width: 560px;
    width: 100%;
    border-top: 4px solid var(--accent-green);
    box-shadow: 0 8px 40px rgba(44,62,80,0.1);
}

.thank-you-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-green);
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-icon-inner {
    width: 28px;
    height: 20px;
    border-left: 3px solid var(--white);
    border-bottom: 3px solid var(--white);
    transform: rotate(-45deg) translateY(-4px);
}

.thank-you-card h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 16px;
}

.thank-you-card p {
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 36px;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--primary-dark);
    border-top: 3px solid var(--accent-gold);
    padding: 20px 24px;
    display: none;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}

.cookie-consent-banner.visible {
    display: block;
}

.cookie-consent-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cookie-consent-text {
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    flex: 1;
    min-width: 280px;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 10px 22px;
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: opacity 0.25s;
}

.btn-cookie:hover { opacity: 0.85; }

.btn-cookie-accept { background: var(--accent-gold); color: var(--white); }
.btn-cookie-decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); }
.btn-cookie-info { background: transparent; color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.18); text-decoration: none; display: inline-flex; align-items: center; }

.about-image-hero {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 0;
}

.structured-text-block {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 24px;
}

.disclaimer-section-block {
    background: var(--light-gray);
    padding: 56px 24px;
}

.disclaimer-section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.disclaimer-section-inner h2 {
    margin-bottom: 24px;
}

.disclaimer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.disclaimer-col-item {
    border-top: 2px solid var(--primary);
    padding-top: 20px;
}

.disclaimer-col-item-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.disclaimer-col-item-text {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .two-col-text-image {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .two-col-text-image.reverse {
        direction: ltr;
    }

    .col-image-block img {
        height: 360px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pillar-card-image { height: 260px; }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 24px;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .policy-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .policy-nav-panel {
        position: static;
    }

    .contact-matrix {
        grid-template-columns: 1fr;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-strip {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--mid-gray);
    }

    .stat-item:last-child { border-bottom: none; }

    .activity-flow {
        grid-template-columns: 1fr;
    }

    .flow-step {
        border-right: none;
        border-bottom: 1px solid var(--mid-gray);
    }

    .flow-step:last-child { border-bottom: none; }

    .cookie-diagram {
        grid-template-columns: 1fr;
    }

    .diagram-cell {
        border-right: none;
        border-bottom: 1px solid var(--mid-gray);
    }

    .diagram-cell:last-child { border-bottom: none; }

    .disclaimer-cols {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .approach-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-gap: 56px;
        --section-gap-sm: 40px;
    }

    .main-nav { display: none; }
    .nav-toggle { display: flex; }

    .header-inner { height: 64px; }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 24px 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-block { min-height: 75vh; }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-image { height: 220px; }

    .article-hero { height: 300px; }

    .article-hero-content { padding: 24px; }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .thank-you-card {
        padding: 48px 28px;
    }

    .contact-form-block,
    .contact-info-block {
        padding: 28px;
    }

    .cookie-consent-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .pillar-card:hover {
        transform: none;
    }

    .compliance-bar {
        font-size: 0.72rem;
        padding: 8px 16px;
    }

    .page-hero-simple {
        padding: 56px 24px 48px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.4rem; }

    .hero-content {
        padding: 60px 20px;
    }

    .cookie-consent-buttons {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
        text-align: center;
    }
}
