/* #12294F, #1E4080, #A06830, #EEF4FA */
:root {
    --color-primary: #12294F;
    --color-secondary: #1E4080;
    --color-accent: #A06830;
    --bg-tint: #EEF4FA;
    --color-text-dark: #2B2D42;
    --color-text-light: #F4F4F9;
    --color-white: #FFFFFF;
    --font-main: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
}

/* Base resets & typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo - Left aligned */
.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary);
    z-index: 100;
}

/* Hamburger - Right aligned */
.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    display: none;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-checkbox {
    display: none;
}

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-list a {
    font-weight: 500;
    color: var(--color-primary);
}

.desktop-nav .nav-list a:hover {
    color: var(--color-accent);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--color-white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-nav a {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-primary);
    display: block;
}

/* Mobile adaptation for Header */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    #menu-toggle:checked ~ .mobile-nav {
        max-height: 400px;
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Containers & General Sections */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 16px;
}

@media (min-width: 768px) {
    .section-container {
        padding: 80px 24px;
    }
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    margin-bottom: 12px;
    background-color: var(--bg-tint);
    padding: 6px 16px;
    border-radius: 999px; /* Pill style */
}

.section-title {
    font-size: clamp(24px, 4vw, 36px);
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-description {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--color-text-dark);
    opacity: 0.85;
}

/* Custom Buttons (Pill style, Soft Organic) */
.btn-primary {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 14px 32px;
    border-radius: 50px; /* Pill */
    font-weight: 600;
    border: 2px solid var(--color-primary);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07); /* Subtle */
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.btn-secondary-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--color-primary);
    padding: 14px 32px;
    border-radius: 50px; /* Pill */
    font-weight: 600;
    border: 2px solid var(--color-primary);
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
    background-color: var(--bg-tint);
    transform: translateY(-2px);
}

/* INDEX: HERO SPLIT-COLOR (Soft Organic) */
.hero-split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 80vh;
}

@media (min-width: 992px) {
    .hero-split {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content-block {
    background-color: var(--bg-tint);
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .hero-content-block {
        padding: 80px 64px;
    }
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    margin-bottom: 16px;
    background-color: var(--color-white);
    padding: 6px 16px;
    border-radius: 999px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 52px);
    color: var(--color-primary);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-text {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--color-text-dark);
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-image-block {
    position: relative;
    width: 100%;
    min-height: 350px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* INDEX: BENEFITS 2x2 */
.benefits-2x2 {
    background-color: var(--color-white);
}

.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

.benefit-card {
    background-color: var(--bg-tint);
    padding: 36px;
    border-radius: 36px; /* Soft Organic Pill style */
    box-shadow: 0 2px 12px rgba(0,0,0,0.07); /* Subtle */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--color-accent);
}

.card-title {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.card-text {
    font-size: 15px;
    color: var(--color-text-dark);
    opacity: 0.85;
}

/* INDEX: GALLERY GRID */
.gallery-grid-section {
    background-color: var(--bg-tint);
}

.gallery-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .gallery-layout {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.gallery-item.tall-item {
    @media (min-width: 768px) {
        grid-row: span 1;
    }
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--color-white);
    font-weight: 600;
    font-size: 16px;
}

.placeholder-item {
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

.placeholder-content .placeholder-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
}

.placeholder-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.placeholder-content p {
    font-size: 14px;
    opacity: 0.8;
}

/* INDEX: QUOTE HIGHLIGHT */
.quote-highlight-section {
    background-color: var(--color-white);
}

.quote-box {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 48px 24px;
    border-radius: 48px; /* Soft Organic Pill-like */
    text-align: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

@media (min-width: 768px) {
    .quote-box {
        padding: 64px;
    }
}

.quote-mark {
    font-size: 80px;
    color: var(--color-accent);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    opacity: 0.3;
}

.quote-text {
    font-size: clamp(18px, 3vw, 24px);
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.quote-author {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
}

/* INDEX: CHECKLIST BLOCK */
.checklist-block-section {
    background-color: var(--bg-tint);
}

.checklist-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .checklist-layout {
        grid-template-columns: 40% 60%;
        align-items: center;
    }
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.checklist-item {
    background-color: var(--color-white);
    padding: 24px;
    border-radius: 28px;
    display: flex;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.check-icon {
    font-size: 20px;
    color: var(--color-accent);
    font-weight: bold;
    flex-shrink: 0;
}

.checklist-item h4 {
    color: var(--color-primary);
    font-size: 16px;
    margin-bottom: 6px;
}

.checklist-item p {
    font-size: 13px;
    color: var(--color-text-dark);
    opacity: 0.8;
}

/* INDEX: EXPERT BLOCK */
.expert-block-section {
    background-color: var(--color-white);
}

.expert-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    background-color: var(--bg-tint);
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

@media (min-width: 768px) {
    .expert-card {
        grid-template-columns: 40% 60%;
        align-items: center;
    }
}

.expert-image-wrapper {
    height: 100%;
    min-height: 250px;
}

.expert-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-info-wrapper {
    padding: 32px;
}

@media (min-width: 768px) {
    .expert-info-wrapper {
        padding: 48px;
    }
}

.expert-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 12px;
}

.expert-title {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.expert-text {
    font-size: 16px;
    font-style: italic;
    color: var(--color-text-dark);
    margin-bottom: 24px;
    opacity: 0.9;
}

.expert-signature {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-primary);
}

/* PROGRAM: HERO & LEAD */
.program-hero {
    background-color: var(--bg-tint);
    text-align: center;
}

.page-title {
    font-size: clamp(28px, 5vw, 48px);
    color: var(--color-primary);
    margin-bottom: 16px;
}

.page-lead {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--color-text-dark);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* PROGRAM: TIMELINE-4MODULES */
.timeline-section {
    background-color: var(--color-white);
}

.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 32px;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    width: 3px;
    background-color: var(--bg-tint);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.timeline-badge {
    position: absolute;
    left: -32px;
    top: 0;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
}

.timeline-content {
    background-color: var(--bg-tint);
    padding: 32px;
    border-radius: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.module-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 15px;
    margin-bottom: 16px;
    opacity: 0.85;
}

.module-features {
    list-style: none;
    padding: 0;
}

.module-features li {
    font-size: 14px;
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--color-text-dark);
    opacity: 0.9;
}

.module-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

/* PROGRAM: STATS */
.stats-section {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    padding: 16px;
}

.stat-number {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: bold;
    color: var(--color-accent);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    opacity: 0.85;
}

/* PROGRAM: FAQ */
.faq-section {
    background-color: var(--bg-tint);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.faq-item {
    background-color: var(--color-white);
    padding: 32px;
    border-radius: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.faq-item h4 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    opacity: 0.85;
}

/* PROGRAM: CTA BANNER */
.cta-banner {
    background-color: var(--color-white);
}

.cta-wrapper {
    background-color: var(--bg-tint);
    padding: 48px 24px;
    border-radius: 48px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

@media (min-width: 768px) {
    .cta-wrapper {
        padding: 64px;
    }
}

.cta-wrapper h2 {
    font-size: clamp(24px, 4vw, 36px);
    color: var(--color-primary);
    margin-bottom: 16px;
}

.cta-wrapper p {
    font-size: 16px;
    margin-bottom: 32px;
    opacity: 0.85;
}

/* MISSION: INTRO */
.mission-intro {
    background-color: var(--bg-tint);
    text-align: center;
}

/* MISSION: VERTICAL STORYTELLING */
.storytelling-section {
    background-color: var(--color-white);
}

.story-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
    align-items: center;
}

@media (min-width: 768px) {
    .story-block {
        grid-template-columns: 1fr 1fr;
    }
    .story-block.reverse {
        direction: rtl;
    }
    .story-block.reverse .story-text {
        direction: ltr;
    }
}

.story-text {
    padding: 16px;
}

.story-date {
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.story-text h2 {
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.story-text p {
    font-size: 15px;
    margin-bottom: 16px;
    opacity: 0.85;
}

.story-image {
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    height: 350px;
}

.story-img-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MISSION: VALUES GRID */
.values-section {
    background-color: var(--bg-tint);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background-color: var(--color-white);
    padding: 32px;
    border-radius: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.value-num {
    font-size: 36px;
    font-weight: bold;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.value-card h4 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    opacity: 0.85;
}

/* MISSION: MANIFESTO */
.manifesto-section {
    background-color: var(--color-white);
}

.manifesto-card {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 48px 24px;
    border-radius: 48px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.manifesto-card h3 {
    font-size: 24px;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.manifesto-text {
    font-size: 20px;
    font-style: italic;
    opacity: 0.95;
}

/* CONTACT: SPLIT LAYOUT */
.contact-section-split {
    background-color: var(--bg-tint);
}

.contact-split-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .contact-split-wrapper {
        grid-template-columns: 60% 40%;
    }
}

.contact-form-block {
    background-color: var(--color-white);
    padding: 32px;
    border-radius: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

@media (min-width: 768px) {
    .contact-form-block {
        padding: 48px;
    }
}

.contact-form-block h2 {
    color: var(--color-primary);
    margin-bottom: 12px;
}

.contact-form-block p {
    font-size: 15px;
    margin-bottom: 24px;
    opacity: 0.85;
}

.custom-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border-radius: 50px; /* Pill for inputs */
    border: 1px solid rgba(0,0,0,0.1);
    background-color: var(--bg-tint);
    font-family: var(--font-main);
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    border-radius: 24px; /* Soft organic for larger input */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-submit-btn {
    align-self: flex-start;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
}

.info-card {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 32px;
    border-radius: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    height: 100%;
}

.info-card h3 {
    color: var(--color-accent);
    margin-bottom: 12px;
}

.info-intro {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-icon {
    font-size: 24px;
    color: var(--color-accent);
}

.info-text strong {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-accent);
}

.info-text p {
    font-size: 15px;
    opacity: 0.9;
}

.info-text a:hover {
    color: var(--color-accent);
}

/* LEGAL PAGES */
.legal-page {
    background-color: var(--color-white);
}

.legal-date {
    font-size: 14px;
    color: var(--color-accent);
    margin-bottom: 32px;
}

.legal-section-content {
    margin-bottom: 32px;
}

.legal-section-content h2 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.legal-section-content p {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 16px;
}

.legal-section-content ul {
    list-style: inside disc;
    margin-bottom: 16px;
    padding-left: 16px;
}

.legal-section-content li {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 8px;
}

/* THANK YOU PAGE */
.thank-you-page {
    background-color: var(--bg-tint);
    text-align: center;
}

.thank-you-card {
    background-color: var(--color-white);
    padding: 48px 24px;
    border-radius: 48px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    max-width: 700px;
    margin: 0 auto;
}

.thank-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 24px;
}

.next-steps {
    margin-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 24px;
}

.next-steps h3 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.next-steps p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 24px;
}

.thank-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    transform: translateY(0);
    transition: transform 0.4s ease;
    background-color: var(--color-primary);
    color: var(--color-white);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 14px;
}

#cookie-banner a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: opacity 0.3s;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: opacity 0.3s;
}

.cookie-btn-accept:hover,
.cookie-btn-decline:hover {
    opacity: 0.9;
}

@media (max-width: 600px) {
    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-btns {
        width: 100%;
    }
    .cookie-btn-accept, .cookie-btn-decline {
        flex: 1;
        text-align: center;
    }
}

/* FOOTER (Hardcoded colors for translator safety) */
.site-footer {
    background-color: #1E4080 !important; /* Force deep blue */
    color: #F4F4F9 !important; /* Force light text */
    padding: 48px 16px 24px 16px !important;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-container {
        grid-template-columns: 35% 15% 15% 35%;
    }
}

.footer-brand .footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #A06830 !important; /* Force copper */
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.85;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    font-size: 16px;
    color: #A06830 !important; /* Force copper */
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #A06830 !important; /* Force copper */
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.85;
}

.footer-email {
    color: #A06830 !important;
    text-decoration: underline !important;
}

.footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 12px;
    opacity: 0.7;
}