/* Palette Name: graphite-amber */
/* Primary: #1E2832, Secondary: #2C3E50, Accent: #C9900A, Tint: #F5F7F9 */

:root {
    --color-primary: #1E2832;
    --color-secondary: #2C3E50;
    --color-accent: #C9900A;
    --bg-tint: #F5F7F9;
    --bg-dark: #0F1318;
    --bg-dark-card: #19212B;
    --text-light: #F5F7F9;
    --text-muted: #A0B0C0;
    
    /* Typography */
    --font-editorial: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    
    /* Border Radius Style: Pill */
    --radius-btn: 50px;
    --radius-card: 32px;
    --radius-badge: 999px;
    
    /* Shadow Style: Dramatic */
    --shadow-dramatic: 0 24px 64px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 32px 80px rgba(19, 25, 33, 0.6);
}

/* Base Reset & Mobile-First Styling */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Scale */
h1, h2, h3, h4 {
    font-family: var(--font-editorial);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h1 {
    font-size: clamp(32px, 7vw, 76px);
}

h2 {
    font-size: clamp(26px, 5vw, 48px);
}

h3 {
    font-size: clamp(20px, 3vw, 28px);
}

p {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-muted);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-light);
}

/* Layout Containers */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 16px;
}

@media (min-width: 1024px) {
    .section-container {
        padding: 80px 24px;
    }
}

/* Buttons (Pill design-style) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    min-height: 48px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--text-light);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

.btn-accent {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

.btn-accent:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    box-shadow: var(--shadow-hover);
}

.btn-full {
    width: 100%;
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo */
.logo {
    font-family: var(--font-editorial);
    font-size: 28px;
    font-weight: bold;
    z-index: 100;
    color: var(--text-light);
}

/* Hamburger - ALWAYS RIGHT */
.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;
    margin: 5px 0;
    transition: 0.3s;
    background-color: var(--text-light);
}

.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 {
    color: var(--text-muted);
    font-weight: 500;
}

.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(--bg-dark);
}

.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;
    display: block;
}

/* Header Responsive */
@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: gradient-center */
.hero-gradient-center {
    position: relative;
    padding: 100px 16px;
    text-align: center;
    background: radial-gradient(circle at center, var(--color-secondary) 0%, var(--bg-dark) 80%);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero-gradient-center {
        padding: 160px 24px;
    }
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background-color: rgba(201, 144, 10, 0.15);
    color: var(--color-accent);
    border-radius: var(--radius-badge);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    margin-bottom: 24px;
    font-family: var(--font-editorial);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 600px) {
    .hero-actions {
        flex-direction: row;
    }
}

/* Section Header Styles */
.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.section-header-left {
    text-align: left;
    max-width: 700px;
    margin-bottom: 48px;
}

.section-title {
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
}

/* Section 1: benefits-hscroll */
.section-benefits {
    background-color: var(--bg-dark-card);
}

.benefits-hscroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) transparent;
}

.benefit-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background-color: var(--bg-dark);
    padding: 40px 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

@media (min-width: 768px) {
    .benefit-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (min-width: 1024px) {
    .benefit-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-num {
    font-family: var(--font-editorial);
    font-size: 48px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 16px;
}

/* Section 2: accordion-faq */
.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-dark-card);
    border-radius: var(--radius-card);
    margin-bottom: 16px;
    box-shadow: var(--shadow-dramatic);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.02);
}

.faq-question {
    padding: 24px 32px;
    font-family: var(--font-editorial);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--color-accent);
    transition: transform 0.3s;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 32px 24px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer p {
    margin-top: 16px;
}

/* Section 3: comparison-table */
.section-comparison {
    background-color: var(--bg-dark-card);
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-dark);
    text-align: left;
    min-width: 600px;
}

.comparison-table th, .comparison-table td {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    background-color: var(--color-primary);
    font-family: var(--font-editorial);
    font-size: 18px;
    color: var(--text-light);
}

.comparison-table tr:hover {
    background-color: rgba(255, 255, 255, 0.01);
}

/* Section 4: cta-banner */
.section-cta-banner {
    padding: 80px 16px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    text-align: center;
}

.cta-banner-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    margin-bottom: 16px;
}

.cta-subtitle {
    margin-bottom: 32px;
    color: var(--text-light);
    opacity: 0.8;
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* Section 5: stats-bar */
.section-stats {
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: var(--font-editorial);
    font-size: 64px;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-muted);
}

/* Program Page Styles */
.program-hero {
    padding: 60px 0;
}

.program-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .program-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.category-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(201, 144, 10, 0.15);
    color: var(--color-accent);
    border-radius: var(--radius-badge);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.page-title {
    margin-bottom: 20px;
}

.lead-text {
    font-size: 20px;
    color: var(--text-muted);
}

.program-hero-visual {
    position: relative;
}

.program-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    object-fit: cover;
    max-height: 450px;
}

/* Layout: horizontal-tabs (No JS) */
.section-tabs {
    background-color: var(--bg-dark-card);
}

.tabs {
    display: flex;
    flex-direction: column;
}

input[name="tabs"] {
    display: none;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
    justify-content: center;
}

.tabs-nav label {
    padding: 12px 24px;
    background-color: var(--bg-dark);
    border-radius: var(--radius-btn);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-panel {
    display: none;
    background-color: var(--bg-dark);
    padding: 40px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    border: 1px solid rgba(255,255,255,0.02);
}

/* Tabs Logic */
#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-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
}

.tab-panel-content h3 {
    margin-bottom: 20px;
}

.panel-list {
    margin-top: 24px;
    padding-left: 20px;
    list-style-type: square;
}

.panel-list li {
    margin-bottom: 12px;
    color: var(--text-muted);
}

/* Program CTA Split */
.section-cta-split {
    padding: 60px 0;
}

.split-box {
    background-color: var(--bg-dark-card);
    border-radius: var(--radius-card);
    padding: 60px 40px;
    box-shadow: var(--shadow-dramatic);
    border: 1px solid rgba(255,255,255,0.02);
}

.split-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.split-text h2 {
    margin-bottom: 20px;
}

.split-text p {
    margin-bottom: 32px;
}

/* Mission Page Styles */
.mission-hero {
    padding: 80px 0 40px 0;
    text-align: center;
}

.mission-hero .lead-text {
    max-width: 800px;
    margin: 0 auto;
}

/* vertical-storytelling */
.section-storytelling {
    background-color: var(--bg-dark-card);
}

.story-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.story-block:last-child {
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .story-block {
        grid-template-columns: 1fr 1.2fr;
    }
    
    .story-block.reverse {
        grid-template-columns: 1.2fr 1fr;
    }
    
    .story-block.reverse .story-text {
        order: 1;
    }
    
    .story-block.reverse .story-accent-box {
        order: 2;
    }
}

.story-image-wrapper {
    position: relative;
}

.story-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    object-fit: cover;
}

.story-text h2 {
    margin-bottom: 20px;
}

.story-text p {
    margin-bottom: 16px;
}

.story-list {
    list-style: none;
    margin-top: 24px;
}

.story-list li {
    margin-bottom: 16px;
    color: var(--text-muted);
    position: relative;
    padding-left: 24px;
}

.story-list li::before {
    content: '■';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.story-accent-box {
    background-color: var(--color-secondary);
    border-radius: var(--radius-card);
    padding: 40px;
    box-shadow: var(--shadow-dramatic);
    border: 1px solid rgba(255,255,255,0.05);
}

.accent-box-inner h3 {
    margin-bottom: 16px;
}

/* Values Section */
.section-values {
    background-color: var(--bg-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background-color: var(--bg-dark-card);
    padding: 40px 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    border: 1px solid rgba(255,255,255,0.02);
}

.value-card h3 {
    margin-bottom: 16px;
    color: var(--color-accent);
}

/* Contact Page Styles */
.section-contact {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 48px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
    }
}

.contact-form-wrapper {
    background-color: var(--bg-dark-card);
    padding: 40px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    border: 1px solid rgba(255,255,255,0.02);
}

.contact-form-wrapper h2 {
    margin-bottom: 12px;
}

.contact-form-wrapper p {
    margin-bottom: 32px;
}

.styled-form .form-group {
    margin-bottom: 24px;
}

.styled-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
}

.styled-form input, .styled-form textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-radius: var(--radius-btn);
    font-family: var(--font-sans);
    font-size: 16px;
    transition: all 0.3s ease;
}

.styled-form textarea {
    border-radius: 20px;
    min-height: 150px;
    resize: vertical;
}

.styled-form input:focus, .styled-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(201, 144, 10, 0.2);
}

.contact-info-wrapper .info-card {
    background-color: var(--color-secondary);
    padding: 40px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    border: 1px solid rgba(255,255,255,0.05);
}

.info-card h3 {
    margin-bottom: 16px;
}

.info-intro {
    margin-bottom: 32px;
    color: var(--text-light);
    opacity: 0.8;
}

.info-item {
    margin-bottom: 24px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.info-item p {
    color: var(--text-light);
}

/* Legal Pages Styling */
.section-legal-page {
    padding: 80px 16px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-title {
    margin-bottom: 8px;
}

.legal-date {
    font-size: 14px;
    color: var(--color-accent);
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 24px;
    margin: 32px 0 16px 0;
}

.legal-content p {
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 12px;
    color: var(--text-muted);
}

/* Thank You Page Styling */
.section-thank {
    padding: 80px 16px;
    text-align: center;
}

.thank-card {
    max-width: 750px;
    margin: 0 auto;
    background-color: var(--bg-dark-card);
    padding: 60px 40px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    border: 1px solid rgba(255,255,255,0.02);
}

.thank-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(201, 144, 10, 0.15);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 24px auto;
}

.thank-title {
    margin-bottom: 16px;
}

.thank-desc {
    margin-bottom: 40px;
}

.thank-next-steps {
    text-align: left;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    margin-bottom: 40px;
}

.thank-next-steps h3 {
    margin-bottom: 24px;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.step-card {
    background-color: var(--bg-dark);
    padding: 24px;
    border-radius: var(--radius-card);
    border: 1px solid rgba(255,255,255,0.02);
}

.step-card h4 {
    margin-bottom: 8px;
    color: var(--color-accent);
}

.step-card p {
    font-size: 14px;
    margin-bottom: 16px;
}

.step-link {
    font-size: 14px;
    font-weight: 600;
}

/* Footer Styling */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
}

.footer-brand .logo {
    display: inline-block;
}

.site-footer h4 {
    font-family: var(--font-sans);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.site-footer ul {
    list-style: none;
}

.site-footer li {
    margin-bottom: 12px;
}

.site-footer a {
    transition: color 0.3s;
}

.site-footer a:hover {
    color: var(--color-accent) !important;
}

.footer-contact p {
    margin-bottom: 12px;
}

/* Cookie Banner Styling */
#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);
    border-top: 2px solid var(--color-accent);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    color: var(--text-light);
    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-primary);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-btn);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.3s;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: var(--radius-btn);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
}

.cookie-btn-accept:hover, .cookie-btn-decline:hover {
    opacity: 0.9;
}

.cookie-btn-decline:hover {
    background-color: rgba(255,255,255,0.05);
}

@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;
    }
}