/* #6B0F1A, #7D1220, #A06830, #FDF5F5 */
:root {
    --color-primary: #6B0F1A;
    --color-secondary: #7D1220;
    --color-accent: #A06830;
    --bg-tint: #FDF5F5;
    --color-dark: #2A060A;
    --color-light: #FFFFFF;
    --color-text-dark: #3A3A3A;
    --color-text-muted: #666666;
    
    /* Font definitions for Warm-Vintage style */
    --font-headings: 'Georgia', 'Playfair Display', serif;
    --font-body: 'Trebuchet MS', 'Helvetica Neue', Arial, sans-serif;
}

/* Base Styles & Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--color-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Rounded Border System */
.rounded-borders .benefit-card,
.rounded-borders .hero-text-card,
.rounded-borders .step-card,
.rounded-borders .gallery-img,
.rounded-borders .gallery-item,
.rounded-borders .parallax-like-card,
.rounded-borders .timeline-content,
.rounded-borders .value-card,
.rounded-borders .contact-form-block,
.rounded-borders .info-card-inner,
.rounded-borders .working-hours-card,
.rounded-borders .thank-card-wrapper,
.rounded-borders .form-input,
.rounded-borders .form-textarea {
    border-radius: 12px;
}

.rounded-borders .btn {
    border-radius: 8px;
}

.rounded-borders .timeline-badge,
.rounded-borders .thank-icon-circle {
    border-radius: 50%;
}

/* Flat Shadow System (No Shadows, borders/colors as accents) */
.flat-shadows * {
    box-shadow: none !important;
}

.flat-shadows .benefit-card,
.flat-shadows .hero-text-card,
.flat-shadows .step-card,
.flat-shadows .timeline-content,
.flat-shadows .value-card,
.flat-shadows .info-card-inner,
.flat-shadows .working-hours-card,
.flat-shadows .thank-card-wrapper {
    border: 2px solid #EAE0D5;
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-secondary);
    border-bottom: 3px solid var(--color-accent);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: var(--font-headings);
    font-size: 26px;
    font-weight: bold;
    color: var(--color-light) !important;
    z-index: 100;
}

/* 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;
    background-color: var(--color-light);
    transition: 0.3s;
}

.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(--color-light);
    font-weight: 600;
}

.desktop-nav .nav-list a:hover {
    color: var(--color-accent);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--color-secondary);
}

.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(--color-light);
    font-size: 18px;
    display: block;
}

/* Responsive Header */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    #menu-toggle:checked ~ .mobile-nav {
        max-height: 400px;
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-light) !important;
}

.btn-primary:hover {
    background-color: var(--color-accent);
}

.btn-secondary-outline {
    background-color: transparent;
    border-color: var(--color-light);
    color: var(--color-light) !important;
}

.btn-secondary-outline:hover {
    background-color: var(--color-light);
    color: var(--color-primary) !important;
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-light) !important;
}

.btn-accent:hover {
    background-color: var(--color-primary);
}

.btn-white-outline {
    background-color: transparent;
    border-color: var(--color-light);
    color: var(--color-light) !important;
}

.btn-white-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Vintage Badge */
.vintage-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-light);
    padding: 6px 14px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Mixed Color Mode Layouts */
/* Hero dark, alternating sections */
.hero-overlap-section {
    background-color: var(--color-secondary);
    padding: 60px 16px;
    color: var(--color-light);
}

.hero-overlap-section h1 {
    color: var(--color-light);
}

/* Section Containers */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 16px;
}

.section-container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 16px;
}

/* Alternating Backgrounds */
.benefits-section {
    background-color: var(--bg-tint);
}

.two-col-image-section {
    background-color: var(--color-light);
}

.steps-section {
    background-color: var(--bg-tint);
}

.gallery-section {
    background-color: var(--color-light);
}

/* Hero Grid Overlap Layout */
.hero-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.hero-image-wrapper {
    width: 100%;
}

.hero-main-img {
    width: 100%;
    object-fit: cover;
    height: 350px;
    border: 4px solid var(--color-accent);
}

.hero-text-card {
    background-color: var(--color-secondary);
    padding: 30px 20px;
    border: 3px solid var(--color-accent);
}

.hero-title {
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.2;
}

.hero-lead {
    font-size: 18px;
    margin-bottom: 30px;
    color: #F5E6E8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

@media (min-width: 1024px) {
    .hero-grid-container {
        grid-template-columns: 1.2fr 1fr;
        position: relative;
    }
    
    .hero-text-card {
        margin-left: -80px;
        position: relative;
        z-index: 5;
        padding: 50px;
    }
    
    .hero-main-img {
        height: 500px;
    }
}

/* Section Header Center */
.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px auto;
}

.section-title {
    font-size: clamp(24px, 4vw, 36px);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-accent);
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 16px;
    margin-top: 15px;
}

/* Benefits 2x2 Grid */
.benefits-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit-card {
    background-color: var(--color-light);
    padding: 30px;
    border-top: 5px solid var(--color-primary) !important;
}

.benefit-icon {
    font-family: var(--font-headings);
    font-size: 32px;
    color: var(--color-accent);
    font-weight: bold;
    margin-bottom: 15px;
}

.benefit-title {
    font-size: 20px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .benefits-grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Two Column Image Layout */
.col-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.content-side-img {
    width: 100%;
    object-fit: cover;
    height: 400px;
    border: 3px solid var(--color-accent);
}

.side-text-block .section-tag {
    color: var(--color-accent);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.side-text-block .section-title {
    display: block;
    text-align: left;
    margin-bottom: 25px;
}

.side-text-block .section-title::after {
    left: 0;
    transform: none;
}

.section-paragraph {
    margin-bottom: 20px;
    color: var(--color-text-dark);
}

.custom-bullet-list {
    list-style: none;
    margin-top: 25px;
}

.custom-bullet-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-weight: 600;
}

.custom-bullet-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 18px;
}

@media (min-width: 992px) {
    .col-grid-2 {
        grid-template-columns: 1fr 1.2fr;
    }
}

/* Numbered Steps Horizontal Grid */
.steps-horizontal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.step-card {
    background-color: var(--color-light);
    padding: 30px;
    border-left: 5px solid var(--color-accent) !important;
}

.step-number {
    font-family: var(--font-headings);
    font-size: 40px;
    color: var(--color-primary);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 15px;
}

.step-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 14px;
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .steps-horizontal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-horizontal-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Gallery Grid */
.gallery-grid-3col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 280px;
    border: 2px solid #EAE0D5;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(107, 15, 26, 0.9);
    color: var(--color-light);
    padding: 12px;
    text-align: center;
    font-weight: 600;
}

.placeholder-item {
    background-color: var(--bg-tint);
    border: 2px dashed var(--color-accent);
}

.placeholder-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.placeholder-text {
    font-family: var(--font-headings);
    color: var(--color-accent);
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

@media (min-width: 768px) {
    .gallery-grid-3col {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* CTA Banner Section */
.cta-banner-section {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 80px 16px;
    text-align: center;
    border-top: 4px solid var(--color-accent);
}

.cta-container-inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    color: var(--color-light);
    font-size: clamp(26px, 5vw, 40px);
    margin-bottom: 20px;
}

.cta-lead {
    font-size: 18px;
    margin-bottom: 35px;
    color: #F5E6E8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Inner Page Hero */
.inner-hero-section {
    background-color: var(--color-secondary);
    color: var(--color-light);
    text-align: center;
    padding: 80px 16px;
    border-bottom: 3px solid var(--color-accent);
}

.inner-hero-title {
    color: var(--color-light);
    font-size: clamp(32px, 6vw, 48px);
}

.inner-hero-lead {
    font-size: 18px;
    color: #F5E6E8;
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline 4 Modules (program.html) */
.timeline-section {
    background-color: var(--color-light);
}

.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--color-accent);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    background-color: var(--color-primary);
    color: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    border: 3px solid var(--color-accent);
    z-index: 2;
}

.timeline-content {
    background-color: var(--bg-tint);
    padding: 30px;
}

.module-duration {
    font-weight: bold;
    color: var(--color-accent);
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.module-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.module-highlights {
    list-style: square;
    margin-top: 15px;
    padding-left: 20px;
}

.module-highlights li {
    margin-bottom: 8px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .timeline-wrapper::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        width: 50%;
        padding-left: 0;
        padding-right: 40px;
        text-align: right;
    }
    
    .timeline-item:nth-child(even) {
        margin-left: 50%;
        padding-left: 40px;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-badge {
        left: auto;
        right: -22px;
    }
    
    .timeline-item:nth-child(even) .timeline-badge {
        right: auto;
        left: -22px;
    }
}

/* FAQ Layout (program.html) */
.faq-section {
    background-color: var(--bg-tint);
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    background-color: var(--color-light);
    padding: 24px;
    margin-bottom: 16px;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.faq-question {
    font-size: 18px;
    margin-bottom: 10px;
}

/* In-line full width image card */
.inline-image-section {
    background-color: var(--color-light);
}

.parallax-like-card {
    position: relative;
    overflow: hidden;
    height: 350px;
    border: 4px solid var(--color-accent);
}

.inline-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inline-card-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(42, 6, 10, 0.75);
    color: var(--color-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
}

.inline-card-overlay h3 {
    color: var(--color-light);
    font-size: 28px;
    margin-bottom: 15px;
}

.inline-card-overlay p {
    max-width: 600px;
    font-size: 16px;
}

/* Storytelling layout (mission.html) */
.storytelling-section {
    background-color: var(--color-light);
}

.story-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-title {
    font-size: 26px;
    margin-bottom: 20px;
}

.story-paragraph {
    margin-bottom: 15px;
}

.story-visual {
    flex: 1;
    width: 100%;
}

.story-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border: 3px solid var(--color-accent);
}

@media (min-width: 992px) {
    .story-block {
        flex-direction: row;
    }
    
    .story-block.reverse {
        flex-direction: row-reverse;
    }
}

/* Core Values (mission.html) */
.values-section {
    background-color: var(--bg-tint);
}

.values-grid-3col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.value-card {
    background-color: var(--color-light);
    padding: 30px;
    border-top: 5px solid var(--color-accent) !important;
}

.value-title {
    font-size: 20px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .values-grid-3col {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Contact Layout (contact.html) */
.contact-layout-section {
    background-color: var(--bg-tint);
}

.contact-grid-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-form-block {
    background-color: var(--color-light);
    padding: 30px;
}

.contact-block-title {
    font-size: 26px;
    margin-bottom: 15px;
}

.contact-block-desc {
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.custom-contact-form .form-group {
    margin-bottom: 20px;
}

.custom-contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #EAE0D5;
    background-color: var(--bg-tint);
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card-inner {
    background-color: var(--color-light);
    padding: 30px;
}

.info-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.info-intro {
    color: var(--color-text-muted);
    margin-bottom: 25px;
}

.info-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-detail-item .info-icon-label {
    font-weight: bold;
    color: var(--color-primary);
    display: block;
    margin-bottom: 4px;
}

.contact-link {
    font-weight: bold;
    font-size: 18px;
}

.working-hours-card {
    background-color: var(--bg-tint);
    padding: 24px;
    margin-top: 15px;
}

.working-hours-card h4 {
    margin-bottom: 12px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #EAE0D5;
}

.hours-list li span {
    font-weight: bold;
}

@media (min-width: 992px) {
    .contact-grid-split {
        grid-template-columns: 1.4fr 1fr;
    }
}

/* Legal Policy Layout */
.policy-section {
    background-color: var(--bg-tint);
    padding: 60px 16px;
}

.policy-title {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 10px;
}

.policy-date {
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 40px;
}

.policy-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content p {
    margin-bottom: 15px;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 8px;
}

/* Thank You Section */
.thank-you-section {
    background-color: var(--bg-tint);
    padding: 80px 16px;
}

.thank-card-wrapper {
    background-color: var(--color-light);
    padding: 50px 30px;
    text-align: center;
}

.thank-icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--bg-tint);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    margin: 0 auto 24px auto;
    border: 3px solid var(--color-accent);
}

.thank-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.thank-lead {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.next-steps-block {
    text-align: left;
    background-color: var(--bg-tint);
    padding: 30px;
    margin-bottom: 40px;
}

.next-steps-block h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.thank-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
}

.thank-link-card {
    background-color: var(--color-light);
    padding: 20px;
    border: 1px solid #EAE0D5;
}

.thank-link-card h4 {
    margin-bottom: 5px;
}

.thank-link-card p {
    font-size: 14px;
    color: var(--color-text-muted);
}

.thank-action-button {
    margin-top: 30px;
}

@media (min-width: 768px) {
    .thank-links-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Footer Layout with hardcoded safety background for translation engines */
.site-footer {
    background-color: #7D1220 !important; /* Force deep burgundy background */
    color: #FFFFFF !important; /* Force white text */
    padding: 60px 16px 20px 16px;
    border-top: 4px solid var(--color-accent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-brand .footer-desc {
    margin-top: 15px;
    color: #F5E6E8 !important;
}

.site-footer h4 {
    color: #FFFFFF !important;
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 8px;
    display: inline-block;
}

.site-footer ul {
    list-style: none;
}

.site-footer li {
    margin-bottom: 10px;
}

.site-footer a {
    color: #F5E6E8 !important;
}

.site-footer a:hover {
    color: var(--color-accent) !important;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: #D4A373 !important; /* Warm vintage accent color for copyright */
}

@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.5fr;
    }
}

/* Cookie Banner Styles */
#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);
    border-top: 3px solid var(--color-accent);
}

#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-light);
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--color-light);
    border: 1px solid var(--color-light);
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
}

@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;
    }
}