/* #6A1E9C, #B22B5B, #F2D57F, #F7F2FF */
:root {
    --color-primary: #6A1E9C;
    --color-secondary: #B22B5B;
    --color-accent: #F2D57F;
    --bg-tint: #F7F2FF;
    --color-dark: #2B1B3D;
    --color-light: #FFFFFF;
    --color-text: #4A3E56;
    --color-border: #E2D9EC;
    --shadow-dramatic: 0 24px 64px rgba(106, 30, 156, 0.15);
    --shadow-hover: 0 32px 80px rgba(106, 30, 156, 0.25);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-radius: 0 !important; /* CRITICAL REQUIREMENT: sharp style */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--color-light);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--color-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Header Layout & Burger Menu */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-light);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
}

.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: 800;
    color: var(--color-primary) !important;
    letter-spacing: -0.5px;
    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(--color-primary);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

.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: 600;
    color: var(--color-dark);
}

.desktop-nav .nav-list a:hover {
    color: var(--color-primary);
}

/* 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-light);
    box-shadow: var(--shadow-dramatic);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav a {
    font-weight: 600;
    color: var(--color-dark);
    display: block;
}

/* Mobile responsive hamburger menu */
@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);
    }
}

/* Common Section Layout */
.section {
    padding: 48px 16px;
}

@media (min-width: 768px) {
    .section {
        padding: 80px 24px;
    }
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.bg-white {
    background-color: var(--color-light);
}

.bg-tint {
    background-color: var(--bg-tint);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.section-subtitle {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-description {
    font-size: 16px;
    color: var(--color-text);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    font-size: 15px;
    min-height: 44px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-light) !important;
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.btn-secondary-outline {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary) !important;
}

.btn-secondary-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-light) !important;
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-dark) !important;
}

.btn-accent:hover {
    background-color: var(--color-primary);
    color: var(--color-light) !important;
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    border-color: var(--color-light);
    color: var(--color-light) !important;
}

.btn-outline-white:hover {
    background-color: var(--color-light);
    color: var(--color-dark) !important;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Section (Floating Card Style) */
.hero-section {
    position: relative;
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 40px 16px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(43, 27, 61, 0.65);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
}

.hero-floating-card {
    background-color: var(--color-light);
    padding: 32px;
    max-width: 600px;
    box-shadow: var(--shadow-dramatic);
    border-top: 5px solid var(--color-primary);
}

@media (min-width: 768px) {
    .hero-floating-card {
        padding: 48px;
    }
}

.hero-badge {
    display: inline-block;
    background-color: var(--bg-tint);
    color: var(--color-primary);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero-floating-card h1 {
    font-size: clamp(32px, 5vw, 52px);
    color: var(--color-dark);
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-floating-card p {
    font-size: 16px;
    margin-bottom: 32px;
    color: var(--color-text);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Benefits Timeline */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background-color: var(--color-border);
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
}

.timeline-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    background-color: var(--color-primary);
    color: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
}

.timeline-content {
    background-color: var(--color-light);
    padding: 24px;
    box-shadow: var(--shadow-dramatic);
    border-left: 3px solid var(--color-secondary);
}

.timeline-content h3 {
    color: var(--color-dark);
    margin-bottom: 12px;
    font-size: 20px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-card {
    background-color: var(--color-light);
    box-shadow: var(--shadow-dramatic);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.gallery-img {
    width: 100%;
    height: 220px;
}

.gallery-info {
    padding: 20px;
}

.gallery-info h4 {
    color: var(--color-dark);
    margin-bottom: 8px;
    font-size: 18px;
}

.placeholder-card {
    background-color: var(--color-primary);
    color: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    text-align: center;
}

.placeholder-content h4 {
    color: var(--color-accent);
    margin: 16px 0 8px 0;
    font-size: 20px;
}

/* Quote Highlight */
.quote-box {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 40px 24px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    box-shadow: var(--shadow-dramatic);
}

@media (min-width: 768px) {
    .quote-box {
        padding: 64px 48px;
    }
}

.quote-mark {
    font-size: 80px;
    line-height: 1;
    color: var(--color-accent);
    display: block;
    font-family: Georgia, serif;
    margin-bottom: -20px;
}

.quote-text {
    font-size: clamp(18px, 3vw, 24px);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.4;
}

.quote-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quote-author strong {
    color: var(--color-accent);
    font-size: 18px;
}

.quote-author span {
    font-size: 14px;
    opacity: 0.8;
}

/* Two Column Layout */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .two-col-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.side-img {
    width: 100%;
    height: 450px;
    box-shadow: var(--shadow-dramatic);
}

.col-text h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.col-text p {
    margin-bottom: 16px;
}

.benefit-list {
    list-style: none;
    margin-top: 24px;
}

.benefit-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.benefit-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-size: 18px;
}

/* CTA Banner */
.cta-banner-section {
    background-color: var(--color-secondary);
    color: var(--color-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-banner-content h2 {
    font-size: clamp(28px, 4.5vw, 44px);
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-banner-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* Inner Hero */
.inner-hero {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 64px 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .inner-hero {
        padding: 96px 24px;
    }
}

.inner-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
    line-height: 1.2;
}

.inner-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* CSS Only Tabs (Program) */
.tabs {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--color-light);
    box-shadow: var(--shadow-dramatic);
}

.tabs-nav {
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid var(--color-border);
}

@media (min-width: 768px) {
    .tabs-nav {
        flex-direction: row;
    }
}

.tabs-nav label {
    flex: 1;
    padding: 20px;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    background-color: var(--bg-tint);
    color: var(--color-text);
    transition: var(--transition-smooth);
    border-bottom: 3px solid transparent;
}

.tabs-nav label:hover {
    color: var(--color-primary);
    background-color: var(--color-light);
}

input[name="tabs"] {
    display: none;
}

.tab-panel {
    display: none;
    padding: 32px;
}

@media (min-width: 768px) {
    .tab-panel {
        padding: 48px;
    }
}

#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-light);
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

#t1:checked ~ #p1,
#t2:checked ~ #p2,
#t3:checked ~ #p3,
#t4:checked ~ #p4 {
    display: block;
}

.tab-panel h3 {
    font-size: 24px;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.tab-list {
    list-style: none;
    margin-top: 24px;
}

.tab-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}

.tab-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* Program Stats */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    background-color: var(--bg-tint);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-dramatic);
    border-top: 4px solid var(--color-secondary);
}

.stat-num {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.stat-card h4 {
    font-size: 18px;
    color: var(--color-dark);
    margin-bottom: 12px;
}

/* FAQ Layout */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.faq-item {
    background-color: var(--bg-tint);
    padding: 24px;
    box-shadow: var(--shadow-dramatic);
}

.faq-item h4 {
    font-size: 18px;
    color: var(--color-dark);
    margin-bottom: 12px;
}

/* Storytelling Layout (Mission) */
.story-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .story-block {
        grid-template-columns: 1fr 1fr;
    }
    .story-block.reverse .story-image {
        order: 2;
    }
    .story-block.reverse .story-text {
        order: 1;
    }
}

.story-img-element {
    width: 100%;
    height: 350px;
    box-shadow: var(--shadow-dramatic);
}

.story-meta {
    display: block;
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.story-text h3 {
    font-size: 28px;
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.story-text p {
    margin-bottom: 16px;
}

.story-placeholder-box {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 32px;
    box-shadow: var(--shadow-dramatic);
}

.story-placeholder-box h4 {
    color: var(--color-accent);
    font-size: 20px;
    margin-bottom: 16px;
}

.story-placeholder-box ul {
    list-style: none;
}

.story-placeholder-box li {
    margin-bottom: 16px;
}

/* Manifesto Box */
.manifesto-box {
    background-color: var(--color-light);
    padding: 40px 24px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-dramatic);
    border-top: 5px solid var(--color-secondary);
}

@media (min-width: 768px) {
    .manifesto-box {
        padding: 64px 48px;
    }
}

.manifesto-box h2 {
    font-size: 32px;
    color: var(--color-dark);
    margin-bottom: 20px;
}

/* Contact Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 6fr 4fr;
    }
}

.contact-form-container {
    background-color: var(--bg-tint);
    padding: 32px;
    box-shadow: var(--shadow-dramatic);
}

@media (min-width: 768px) {
    .contact-form-container {
        padding: 48px;
    }
}

.contact-form-container h3 {
    font-size: 24px;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.contact-form-container p {
    margin-bottom: 32px;
}

.custom-form {
    max-width: 800px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--color-border);
    background-color: var(--color-light);
    color: var(--color-dark);
    font-size: 16px;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(106, 30, 156, 0.1);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background-color: var(--color-light);
    padding: 32px;
    box-shadow: var(--shadow-dramatic);
    border-left: 4px solid var(--color-primary);
}

.info-card h3 {
    font-size: 20px;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.info-icon {
    font-size: 24px;
    line-height: 1;
}

.info-text strong {
    display: block;
    color: var(--color-dark);
}

.hours-card {
    border-left-color: var(--color-secondary);
}

.hours-card ul {
    list-style: none;
    margin-top: 16px;
}

.hours-card li {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 8px;
}

/* Legal Pages */
.legal-section {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section h1 {
    font-size: clamp(28px, 5vw, 40px);
    color: var(--color-dark);
    margin-bottom: 8px;
}

.legal-date {
    font-style: italic;
    color: var(--color-text);
    opacity: 0.8;
}

.legal-divider {
    border: 0;
    height: 1px;
    background-color: var(--color-border);
    margin: 24px 0 32px 0;
}

.legal-section h3 {
    font-size: 20px;
    color: var(--color-dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-section p {
    margin-bottom: 16px;
}

.legal-section ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 12px;
}

/* Thank You Page */
.thank-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thank-card {
    background-color: var(--color-light);
    padding: 40px 24px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-dramatic);
    border-top: 6px solid var(--color-primary);
}

@media (min-width: 768px) {
    .thank-card {
        padding: 64px 48px;
    }
}

.thank-icon {
    display: inline-flex;
    width: 80px;
    height: 80px;
    background-color: var(--bg-tint);
    color: var(--color-primary);
    font-size: 40px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.thank-card h1 {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--color-dark);
    margin-bottom: 16px;
}

.thank-lead {
    font-size: 18px;
    margin-bottom: 32px;
}

.next-steps-box {
    background-color: var(--bg-tint);
    padding: 24px;
    text-align: left;
    margin-bottom: 32px;
}

.next-steps-box h3 {
    color: var(--color-dark);
    margin-bottom: 16px;
    font-size: 18px;
}

.next-steps-box ol {
    padding-left: 20px;
}

.next-steps-box li {
    margin-bottom: 12px;
}

.thank-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* Footer Layout with Anti-Translation Protection */
.site-footer {
    background-color: #2B1B3D !important; /* Hardcoded to protect from translation engines */
    color: #F7F2FF !important; /* Hardcoded to protect from translation engines */
    padding: 64px 16px 24px 16px;
    border-top: 4px solid var(--color-primary);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
}

.footer-brand .logo {
    color: #F2D57F !important; /* Accent color hardcoded */
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 14px;
}

.footer-grid h4 {
    color: #FFFFFF !important;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-policies ul {
    list-style: none;
}

.footer-links li,
.footer-policies li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-policies a {
    color: #F7F2FF !important;
    opacity: 0.8;
    font-size: 14px;
}

.footer-links a:hover,
.footer-policies a:hover {
    opacity: 1;
    color: #F2D57F !important;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.footer-contact a {
    color: #F2D57F !important;
}

.footer-bottom {
    border-top: 1px solid rgba(247, 242, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 12px;
    opacity: 0.6;
}

/* 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-dark);
    color: var(--color-light);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
}

#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-dark);
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.cookie-btn-accept:hover {
    background-color: var(--color-light);
}

.cookie-btn-decline {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--color-light);
    padding: 10px 20px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.cookie-btn-decline:hover {
    background-color: rgba(255,255,255,0.1);
}

@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;
    }
}