/* Palette Name: Terracotta & Charcoal (No Blue, No Green) */
:root {
    --primary-color: #D35400;     /* Terracotta Orange */
    --secondary-color: #F0A55A;   /* Warm Amber */
    --dark-color: #1A1512;        /* Dark Charcoal */
    --light-color: #FAF7F2;       /* Warm Cream */
    --accent-color: #C0392B;      /* Deep Red Accent */
    --text-dark: #2C2520;
    --text-light: #FAF7F2;
    --border-radius-card: 12px;
    --border-radius-btn: 8px;
}

/* Base Styles & Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--dark-color);
    border-bottom: 2px solid var(--primary-color);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo - завжди зліва */
.logo {
    font-size: 24px;
    font-weight: bold;
    z-index: 100;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
}

.logo:hover {
    color: var(--secondary-color);
}

/* Hamburger - ЗАВЖДИ СПРАВА */
.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-light);
    font-weight: 500;
    font-size: 15px;
}

.desktop-nav .nav-list a:hover {
    color: var(--secondary-color);
}

/* 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(--dark-color);
}

.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;
}

/* Мобільна адаптація */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block; /* Показуємо hamburger на мобайлі */
    }

    .mobile-nav {
        display: block;
    }

    #menu-toggle:checked ~ .mobile-nav {
        max-height: 400px;
    }

    /* Анімація hamburger */
    #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);
    }
}

/* Section Common Styles (Mixed Mode) */
.section-light {
    background-color: var(--light-color);
    padding: 48px 16px;
}

.section-dark {
    background-color: var(--dark-color);
    color: var(--text-light);
    padding: 48px 16px;
}

.section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .section-light, .section-dark {
        padding: 80px 24px;
    }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px auto;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 16px;
}

.section-intro {
    font-size: clamp(16px, 2vw, 18px);
    opacity: 0.85;
}

/* Buttons (Bold Editorial, Rounded) */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: var(--border-radius-btn);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--dark-color);
}

.btn-light {
    background-color: var(--light-color);
    color: var(--dark-color);
    border: 2px solid var(--light-color);
}

.btn-light:hover {
    background-color: transparent;
    color: var(--light-color);
}

/* Hero Section: fullscreen-center */
.hero-fullscreen {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(36px, 8vw, 68px);
    color: var(--text-light);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 576px) {
    .hero-actions {
        flex-direction: row;
    }
}

/* SECTION 1: benefits-3col */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background-color: var(--light-color);
    border: 2px solid var(--dark-color);
    padding: 32px;
    border-radius: var(--border-radius-card);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.section-dark .benefit-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.benefit-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-desc {
    font-size: 15px;
    opacity: 0.85;
}

/* SECTION 2: testimonials (Vertical list) */
.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--primary-color);
    padding: 24px;
    border-radius: 0 var(--border-radius-card) var(--border-radius-card) 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.testimonial-rating {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-size: 18px;
}

.testimonial-text {
    font-style: italic;
    font-size: 16px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 15px;
}

.author-meta {
    font-size: 13px;
    opacity: 0.6;
}

/* SECTION 3: cta-banner */
.cta-banner-section {
    padding: 80px 20px;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--text-light);
}

.cta-banner-content {
    max-width: 750px;
    margin: 0 auto;
}

.cta-banner-content h2 {
    color: var(--text-light);
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* SECTION 4: numbered-steps */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 576px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    background-color: var(--light-color);
    padding: 24px;
    border-top: 4px solid var(--primary-color);
    border-radius: var(--border-radius-card);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    height: 100%;
}

.step-number {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: rgba(211, 84, 0, 0.2);
    line-height: 1;
    margin-bottom: 12px;
}

.step-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    opacity: 0.8;
}

/* SECTION 5: gallery-grid */
.gallery-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .gallery-layout {
        grid-template-columns: 2fr 1fr;
    }
}

.gallery-item {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-card);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.gallery-item.large {
    height: 250px;
}

@media (min-width: 768px) {
    .gallery-item.large {
        height: 400px;
        grid-row: span 2;
    }
    .gallery-item {
        height: 192px;
    }
}

.gallery-overlay {
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    width: 100%;
    padding: 20px;
    color: var(--text-light);
}

.gallery-overlay span {
    font-weight: 600;
    font-size: 14px;
}

.placeholder-item {
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

.placeholder-content {
    color: var(--text-light);
}

.placeholder-content h4 {
    color: var(--text-light);
    margin-bottom: 8px;
}

/* PROGRAM PAGE: grid-6cards */
.page-header-section {
    padding: 80px 20px;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--text-light);
}

.page-tag {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.page-title {
    font-size: clamp(32px, 6vw, 56px);
    color: var(--text-light);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.module-card {
    background-color: var(--light-color);
    border: 2px solid var(--dark-color);
    border-radius: var(--border-radius-card);
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.module-header {
    margin-bottom: 16px;
}

.module-num {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 12px;
}

.module-title {
    font-size: 22px;
}

.module-desc {
    font-size: 15px;
    opacity: 0.85;
}

/* Stats section */
.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-item {
    padding: 16px;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    opacity: 0.85;
}

/* FAQ Accordion-style layout list */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background-color: var(--light-color);
    border: 2px solid var(--dark-color);
    padding: 24px;
    border-radius: var(--border-radius-card);
}

.faq-question {
    font-size: 18px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

.faq-question::before {
    content: "?";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-answer {
    font-size: 15px;
    opacity: 0.85;
}

/* CTA Split Section */
.cta-split-container {
    display: grid;
    grid-template-columns: 1fr;
    background-color: var(--dark-color);
    color: var(--text-light);
}

@media (min-width: 768px) {
    .cta-split-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cta-split-text {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.cta-split-text h2 {
    color: var(--text-light);
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
}

.cta-split-text p {
    margin-bottom: 32px;
    opacity: 0.85;
}

.cta-split-image {
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

/* MISSION PAGE: story-team */
.story-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .story-layout {
        grid-template-columns: 1.2fr 1fr;
    }
}

.story-content {
    display: flex;
    flex-direction: column;
}

.story-paragraph {
    margin-bottom: 20px;
    font-size: 16px;
}

.story-image-container {
    border-radius: var(--border-radius-card);
    overflow: hidden;
    border: 2px solid var(--dark-color);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.story-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Values Grid */
.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: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: var(--border-radius-card);
}

.value-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color) !important;
}

.value-desc {
    font-size: 15px;
    opacity: 0.85;
}

/* Manifesto Box */
.manifesto-box {
    background-color: var(--light-color);
    border: 4px solid var(--primary-color);
    padding: 40px;
    border-radius: var(--border-radius-card);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-title {
    font-size: 28px;
    margin-bottom: 16px;
}

.manifesto-text {
    font-size: 18px;
    font-style: italic;
    opacity: 0.9;
}

/* CONTACT PAGE Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 992px) {
    .contact-layout {
        grid-template-columns: 1.5fr 1fr;
    }
}

.contact-section-title {
    font-size: 28px;
    margin-bottom: 12px;
}

.contact-section-desc {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 32px;
}

/* Custom Form */
.custom-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-color);
}

.form-group input, .form-group textarea {
    padding: 14px;
    border: 2px solid var(--dark-color);
    border-radius: var(--border-radius-btn);
    background-color: var(--light-color);
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-submit-btn {
    align-self: flex-start;
}

/* Contact Info blocks */
.contact-info-container {
    background-color: var(--light-color);
    border: 2px solid var(--dark-color);
    padding: 32px;
    border-radius: var(--border-radius-card);
    height: fit-content;
}

.info-block {
    margin-bottom: 24px;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.info-value {
    font-size: 15px;
    font-weight: 500;
}

/* LEGAL PAGES */
.legal-page {
    padding: 60px 20px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 32px;
}

.legal-section h2 {
    font-size: 22px;
    margin-bottom: 16px;
}

.legal-section p, .legal-section ul {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 16px;
}

.legal-section ul {
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 8px;
}

.disclaimer-highlight {
    background-color: rgba(192, 57, 43, 0.05);
    border-left: 4px solid var(--accent-color);
    padding: 16px;
    border-radius: 0 var(--border-radius-card) var(--border-radius-card) 0;
}

/* THANK YOU PAGE */
.thank-you-page {
    padding: 80px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thank-container {
    max-width: 650px;
    margin: 0 auto;
}

.thank-card {
    background-color: var(--light-color);
    border: 2px solid var(--dark-color);
    border-radius: var(--border-radius-card);
    padding: 40px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.thank-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 24px auto;
}

.thank-card h1 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 16px;
}

.thank-intro {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 32px;
}

.next-steps {
    text-align: left;
    background-color: rgba(0,0,0,0.02);
    padding: 24px;
    border-radius: var(--border-radius-card);
    margin-bottom: 32px;
}

.next-steps h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Footer (Strictly styled to avoid browser translation breakage) */
.site-footer {
    background-color: #1A1512 !important;
    color: #FAF7F2 !important;
    padding: 60px 20px 20px 20px;
    border-top: 4px solid #D35400 !important;
}

.site-footer h4, .site-footer a, .site-footer p, .site-footer span {
    color: #FAF7F2 !important;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 2fr repeat(3, 1fr);
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 28px;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-tagline {
    font-size: 14px;
    opacity: 0.8;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer li {
    margin-bottom: 12px;
}

.site-footer li a {
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.site-footer li a:hover {
    opacity: 1;
    color: #F0A55A !important;
}

.footer-email-link {
    text-decoration: underline !important;
}

.footer-email-link:hover {
    color: #F0A55A !important;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    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(--dark-color);
    color: var(--text-light);
    border-top: 2px solid var(--primary-color);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 14px; }
#cookie-banner a { color: var(--secondary-color); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

.cookie-btn-accept, .cookie-btn-decline {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
}

.cookie-btn-accept {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.cookie-btn-accept:hover {
    background-color: var(--accent-color);
}

.cookie-btn-decline {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.cookie-btn-decline:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@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; }
}