/* Palette: gold-charcoal */
/* Primary: #8A5800 | Secondary: #B07800 | Accent: #1C2A35 | Bg-tint: #FFFBF0 */

:root {
    --color-primary: #8A5800;
    --color-secondary: #B07800;
    --color-accent: #1C2A35;
    --bg-tint: #FFFBF0;
    --text-dark: #1F2421;
    --text-light: #FFFBF0;
    --card-bg: #FFFFFF;
    --radius-rounded: 16px;
    --radius-btn: 8px;
    --shadow-subtle: 0 2px 12px rgba(0,0,0,0.07);
    --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Base resets & typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-stack);
    background-color: var(--bg-tint);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container-standard {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container-standard {
        padding: 0 24px;
    }
}

/* Header styles */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-accent);
    color: var(--text-light);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-light);
    z-index: 100;
}

.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(--text-light);
    margin: 5px 0;
    transition: 0.3s;
}

.menu-checkbox {
    display: none;
}

.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    color: var(--text-light);
    font-weight: 500;
}

.desktop-nav a:hover {
    color: var(--color-secondary);
}

.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;
    background-color: var(--color-accent);
    z-index: 99;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a {
    color: var(--text-light);
    font-size: 18px;
}

@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);
    }
}

/* HERO SECTION: VERTICAL STACK */
.hero-vertical-stack {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--color-accent);
    color: var(--text-light);
}

.hero-image-wrapper {
    width: 100%;
    height: 45vh;
    min-height: 300px;
    overflow: hidden;
}

.hero-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-block {
    padding: 48px 16px;
    background-color: var(--color-accent);
}

@media (min-width: 768px) {
    .hero-image-wrapper {
        height: 55vh;
    }
    .hero-content-block {
        padding: 64px 24px;
    }
}

.hero-inner-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(176, 120, 0, 0.25);
    color: #FFD275;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-main-title {
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-light);
}

.hero-description, .hero-description-secondary {
    font-size: clamp(15px, 2.5vw, 18px);
    color: #E2E8F0;
    margin-bottom: 16px;
}

.hero-action-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
}

@media (min-width: 600px) {
    .hero-action-group {
        flex-direction: row;
    }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--color-primary);
    color: #FFFFFF !important;
    border-radius: var(--radius-btn);
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-subtle);
    transition: background-color 0.3s ease;
    min-height: 44px;
}

.btn-primary:hover {
    background-color: var(--color-secondary);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background-color: transparent;
    color: var(--text-light) !important;
    border: 2px solid var(--color-secondary);
    border-radius: var(--radius-btn);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-height: 44px;
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
}

.btn-full-width {
    width: 100%;
}

/* Sections Base */
.section-hscroll-wrapper,
.section-comparison-block,
.section-gallery-block,
.section-icon-features,
.section-expert-quote,
.section-form-block,
.section-tabs-block,
.section-stats-faq,
.vertical-story-section,
.section-values-grid,
.section-manifesto-banner,
.section-contact-split,
.legal-page-section,
.thank-you-section {
    padding: 56px 0;
}

@media (min-width: 1024px) {
    .section-hscroll-wrapper,
    .section-comparison-block,
    .section-gallery-block,
    .section-icon-features,
    .section-expert-quote,
    .section-form-block,
    .section-tabs-block,
    .section-stats-faq,
    .vertical-story-section,
    .section-values-grid,
    .section-manifesto-banner,
    .section-contact-split,
    .legal-page-section,
    .thank-you-section {
        padding: 80px 0;
    }
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.sub-tag {
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.section-heading {
    font-size: clamp(24px, 4vw, 36px);
    margin: 8px 0 16px 0;
    color: var(--color-accent);
}

.section-lead-text {
    font-size: 16px;
    color: #4A5568;
}

/* SECTION 1: BENEFITS HORIZONTAL SCROLL */
.section-hscroll-wrapper {
    background-color: #FFFFFF;
}

.horizontal-scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 4px 24px 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.hscroll-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background-color: var(--bg-tint);
    padding: 28px;
    border-radius: var(--radius-rounded);
    box-shadow: var(--shadow-subtle);
    border-top: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
    .hscroll-card {
        flex: 0 0 320px;
    }
}

.card-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.card-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-accent);
}

.card-text {
    font-size: 14px;
    color: #4A5568;
}

/* SECTION 2: COMPARISON TABLE */
.section-comparison-block {
    background-color: var(--bg-tint);
}

.table-responsive-wrapper {
    overflow-x: auto;
    background-color: #FFFFFF;
    border-radius: var(--radius-rounded);
    box-shadow: var(--shadow-subtle);
    padding: 16px;
}

.comparison-custom-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
    text-align: left;
}

.comparison-custom-table th, .comparison-custom-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #E2E8F0;
}

.comparison-custom-table th {
    background-color: var(--color-accent);
    color: var(--text-light);
    font-size: 15px;
}

.table-feature-title {
    font-weight: 700;
    color: var(--color-accent);
    width: 25%;
}

.negative-cell {
    background-color: #FFF5F5;
    color: #C53030;
    font-size: 14px;
    width: 37.5%;
}

.positive-cell {
    background-color: #F0FFF4;
    color: #22543D;
    font-weight: 600;
    font-size: 14px;
    width: 37.5%;
}

/* SECTION 3: GALLERY GRID */
.section-gallery-block {
    background-color: #FFFFFF;
}

.gallery-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .gallery-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item.item-large {
        grid-column: span 2;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-rounded);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    min-height: 240px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 380px;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #FFFFFF;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
}

.visual-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    color: #FFFFFF;
    text-align: center;
}

.color-accent-bg {
    background-color: var(--color-accent);
}

.color-primary-bg {
    background-color: var(--color-primary);
}

.placeholder-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

/* SECTION 4: ICON FEATURES */
.section-icon-features {
    background-color: var(--bg-tint);
}

.features-6grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .features-6grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-6grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-icon-card {
    background-color: #FFFFFF;
    padding: 24px;
    border-radius: var(--radius-rounded);
    box-shadow: var(--shadow-subtle);
}

.feature-icon-bubble {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-card-heading {
    font-size: 18px;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.feature-card-desc {
    font-size: 14px;
    color: #4A5568;
}

/* SECTION 5: EXPERT BLOCK */
.section-expert-quote {
    background-color: #FFFFFF;
}

.expert-card-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    background-color: var(--bg-tint);
    border-radius: var(--radius-rounded);
    padding: 24px;
    box-shadow: var(--shadow-subtle);
    align-items: center;
}

@media (min-width: 768px) {
    .expert-card-wrapper {
        grid-template-columns: 300px 1fr;
        padding: 40px;
    }
}

.expert-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-rounded);
}

.expert-quote-text {
    font-size: 20px;
    font-style: italic;
    color: var(--color-accent);
    margin: 12px 0 20px 0;
    line-height: 1.4;
}

.expert-meta {
    margin-bottom: 12px;
}

.expert-name {
    display: block;
    font-size: 18px;
    color: var(--color-primary);
}

.expert-role {
    font-size: 13px;
    color: #718096;
}

.expert-bio-p {
    font-size: 14px;
    color: #4A5568;
}

/* FORM SECTION */
.section-form-block {
    background-color: var(--bg-tint);
}

.form-container-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 32px 20px;
    border-radius: var(--radius-rounded);
    box-shadow: var(--shadow-subtle);
}

@media (min-width: 768px) {
    .form-container-card {
        padding: 48px;
    }
}

.form-title {
    font-size: 24px;
    color: var(--color-accent);
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    font-size: 14px;
    color: #4A5568;
    text-align: center;
    margin-bottom: 28px;
}

.main-inquiry-form .form-group-single {
    margin-bottom: 20px;
}

.main-inquiry-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 6px;
}

.main-inquiry-form input,
.main-inquiry-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #CBD5E0;
    border-radius: 8px;
    outline: none;
    background-color: #FAFAFA;
}

.main-inquiry-form input:focus,
.main-inquiry-form textarea:focus {
    border-color: var(--color-primary);
    background-color: #FFFFFF;
}

/* PAGE BANNER */
.page-banner-section {
    background-color: var(--color-accent);
    color: var(--text-light);
    padding: 48px 0;
    text-align: center;
}

.page-title {
    font-size: clamp(28px, 5vw, 42px);
    margin: 8px 0 16px 0;
}

.page-intro-lead {
    font-size: 18px;
    color: #E2E8F0;
    max-width: 800px;
    margin: 0 auto;
}

/* PROGRAM PAGE SPECIFIC */
.program-img-feature {
    background-color: #FFFFFF;
    padding: 40px 0 0 0;
}

.program-visual-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    background-color: var(--bg-tint);
    border-radius: var(--radius-rounded);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    align-items: center;
}

@media (min-width: 768px) {
    .program-visual-card {
        grid-template-columns: 1fr 1fr;
    }
}

.program-inline-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.program-visual-text {
    padding: 24px;
}

.program-visual-text h3 {
    font-size: 22px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

/* TABS CSS FOR PROGRAM.HTML */
.section-tabs-block {
    background-color: #FFFFFF;
}

.tabs {
    display: flex;
    flex-direction: column;
}

.tabs input[name="tabs"] {
    display: none;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    justify-content: center;
}

.tabs-nav label {
    padding: 12px 20px;
    background-color: var(--bg-tint);
    color: var(--color-accent);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.tabs-nav label:hover {
    background-color: rgba(138, 88, 0, 0.15);
}

.tab-panel {
    display: none;
}

#t1:checked ~ #p1,
#t2:checked ~ #p2,
#t3:checked ~ #p3,
#t4:checked ~ #p4 {
    display: block;
}

#t1:checked ~ .tabs-nav label[for="t1"],
#t2:checked ~ .tabs-nav label[for="t2"],
#t3:checked ~ .tabs-nav label[for="t3"],
#t4:checked ~ .tabs-nav label[for="t4"] {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.tab-content-card {
    background-color: var(--bg-tint);
    padding: 32px;
    border-radius: var(--radius-rounded);
    box-shadow: var(--shadow-subtle);
}

.tab-content-card h2 {
    font-size: 24px;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.tab-content-card p {
    margin-bottom: 16px;
    color: #4A5568;
}

.module-bullets {
    margin-left: 20px;
    color: var(--color-accent);
}

.module-bullets li {
    margin-bottom: 8px;
}

/* STATS AND FAQ */
.section-stats-faq {
    background-color: var(--bg-tint);
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .stats-banner-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    background-color: #FFFFFF;
    padding: 32px;
    text-align: center;
    border-radius: var(--radius-rounded);
    box-shadow: var(--shadow-subtle);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-primary);
}

.stat-label {
    font-size: 15px;
    color: var(--color-accent);
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.faq-item {
    background-color: #FFFFFF;
    padding: 24px;
    border-radius: var(--radius-rounded);
    box-shadow: var(--shadow-subtle);
}

.faq-question {
    font-size: 18px;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.faq-answer {
    font-size: 14px;
    color: #4A5568;
}

/* MISSION PAGE SPECIFIC */
.vertical-story-section {
    background-color: #FFFFFF;
}

.story-block-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .story-block-row {
        grid-template-columns: 1fr 1fr;
    }
    .story-block-row.reverse-row .story-text-col {
        order: 2;
    }
    .story-block-row.reverse-row .story-img-col {
        order: 1;
    }
}

.story-step-badge {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 8px;
}

.story-text-col h2 {
    font-size: 26px;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.story-text-col p {
    color: #4A5568;
    margin-bottom: 12px;
}

.story-card-img {
    width: 100%;
    border-radius: var(--radius-rounded);
    box-shadow: var(--shadow-subtle);
    max-height: 350px;
    object-fit: cover;
}

.section-values-grid {
    background-color: var(--bg-tint);
}

.values-4grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .values-4grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-4grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background-color: #FFFFFF;
    padding: 24px;
    border-radius: var(--radius-rounded);
    box-shadow: var(--shadow-subtle);
    text-align: center;
}

.value-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.value-card h3 {
    font-size: 18px;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: #4A5568;
}

.section-manifesto-banner {
    background-color: var(--color-accent);
    color: var(--text-light);
}

.manifesto-box {
    max-width: 800px;
    margin: 0 auto;
}

.manifesto-box h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.manifesto-box p {
    font-size: 20px;
    font-style: italic;
    color: #E2E8F0;
}

/* CONTACT PAGE SPECIFIC */
.section-contact-split {
    background-color: var(--bg-tint);
}

.contact-grid-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .contact-grid-2col {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info-card, .contact-form-card {
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: var(--radius-rounded);
    box-shadow: var(--shadow-subtle);
}

.contact-info-card h2, .contact-form-card h2 {
    font-size: 24px;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.contact-info-lead {
    font-size: 15px;
    color: #4A5568;
    margin-bottom: 24px;
}

.contact-detail-item {
    margin-bottom: 16px;
}

.contact-detail-item strong {
    color: var(--color-primary);
    display: block;
    margin-bottom: 4px;
}

.contact-detail-item p {
    color: #4A5568;
}

/* LEGAL PAGES */
.legal-page-section {
    background-color: var(--bg-tint);
}

.legal-content-card {
    background-color: #FFFFFF;
    padding: 32px 20px;
    border-radius: var(--radius-rounded);
    box-shadow: var(--shadow-subtle);
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .legal-content-card {
        padding: 48px;
    }
}

.legal-title {
    font-size: 32px;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.legal-updated-date {
    font-size: 14px;
    color: #718096;
    margin-bottom: 24px;
}

.legal-body-text h2 {
    font-size: 20px;
    color: var(--color-accent);
    margin: 24px 0 12px 0;
}

.legal-body-text p {
    color: #4A5568;
    margin-bottom: 12px;
}

.legal-body-text ul {
    margin-left: 20px;
    color: #4A5568;
    margin-bottom: 16px;
}

/* THANK YOU PAGE */
.thank-you-section {
    background-color: var(--bg-tint);
}

.thank-you-card {
    background-color: #FFFFFF;
    padding: 48px 24px;
    border-radius: var(--radius-rounded);
    box-shadow: var(--shadow-subtle);
    max-width: 700px;
    margin: 0 auto;
}

.thank-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.thank-lead {
    font-size: 18px;
    color: #4A5568;
    margin-bottom: 32px;
}

.next-steps-box {
    border-top: 1px solid #E2E8F0;
    padding-top: 24px;
}

.next-steps-box h3 {
    font-size: 18px;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.next-links-flex {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

@media (min-width: 600px) {
    .next-links-flex {
        flex-direction: row;
    }
}

/* FOOTER STYLES */
.site-footer {
    padding: 48px 0 24px 0;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        padding: 0 24px;
    }
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 12px;
}

.footer-heading {
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 8px;
}

.footer-bottom-bar {
    max-width: 1200px;
    margin: 32px auto 0 auto;
    padding: 20px 16px 0 16px;
    text-align: center;
    font-size: 13px;
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 18px 24px;
    background-color: var(--color-accent);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    transform: translateY(0);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 14px;
}

#cookie-banner a {
    color: #FFD275;
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    padding: 8px 18px;
    background-color: var(--color-primary);
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-btn-decline {
    padding: 8px 18px;
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    cursor: pointer;
}

@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;
    }
}