/* 
   Color Palette: terracotta-teal
   Primary: #C04A1A (Earth Terracotta)
   Secondary: #D86228 (Warm Terracotta Accent)
   Accent: #005060 (Deep Teal)
   Bg Tint: #FFF0E8 (Soft Warm Sand)
   Design Style: warm-vintage
   Border Style: pill
   Shadow Style: subtle
   Color Mode: light
*/

:root {
    --color-primary: #C04A1A;
    --color-secondary: #D86228;
    --color-accent: #005060;
    --bg-tint: #FFF0E8;
    --color-text: #2D231E;
    --color-text-light: #6D5B52;
    --color-white: #FFFFFF;
    
    --font-heading: "Georgia", "Times New Roman", serif;
    --font-body: "Garamond", "Baskerville", serif;
}

/* Base Resets & Vintage Typography */
*, *::after, *::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-tint);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: clamp(16px, 1.1vw, 20px);
    line-height: 1.65;
    overflow-x: hidden;
    /* Vintage subtle texture overlay using CSS gradient */
    background-image: repeating-linear-gradient(45deg, rgba(192, 74, 26, 0.01) 0px, rgba(192, 74, 26, 0.01) 2px, transparent 2px, transparent 10px);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-accent);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 {
    font-size: clamp(32px, 5vw, 64px);
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 12px;
}

h2 {
    font-size: clamp(26px, 3.5vw, 42px);
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Global Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Buttons (Pill Style) */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 2px 12px rgba(192, 74, 26, 0.15);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-secondary:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Vintage Badges */
.vintage-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--bg-tint);
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 20px;
}

/* Header & Hamburger Menu */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-tint);
    border-bottom: 1px solid rgba(192, 74, 26, 0.15);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: bold;
    color: var(--color-primary);
    z-index: 101;
}

.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 101;
    display: none;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--color-accent);
    margin: 5px 0;
    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 {
    font-family: var(--font-heading);
    font-weight: bold;
    color: var(--color-accent);
}

.desktop-nav .nav-list a:hover {
    color: var(--color-primary);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--bg-tint);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(192, 74, 26, 0.1);
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-weight: bold;
    color: var(--color-accent);
    display: block;
}

/* HERO SECTION: Diagonal Split */
.hero-diagonal {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 48px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--color-text-light);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-image-wrapper {
    flex: 1;
    min-height: 350px;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Common Headers */
.section-header {
    margin-bottom: 48px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    color: var(--color-text-light);
}

/* SECTION 1: benefits-3col */
.benefits-section {
    padding: 80px 0;
    background-color: var(--bg-tint);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.benefit-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(192, 74, 26, 0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.card-icon {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 16px;
    opacity: 0.7;
}

.benefit-card h3 {
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 16px;
    color: var(--color-text-light);
}

/* SECTION 2: gallery-grid */
.gallery-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.gallery-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    min-height: 250px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,80,96,0.9), transparent);
    color: var(--color-white);
    padding: 24px;
    font-family: var(--font-heading);
    font-size: 18px;
}

.placeholder-graphic {
    background-color: var(--color-accent);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--bg-tint);
    text-align: center;
}

.placeholder-graphic span {
    font-family: var(--font-heading);
    font-size: 24px;
    border: 1px solid var(--bg-tint);
    padding: 16px 32px;
    border-radius: 50px;
}

/* SECTION 3: checklist-block */
.checklist-section {
    padding: 80px 0;
    background-color: var(--bg-tint);
}

.checklist-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.checklist-info h2 {
    margin-bottom: 20px;
}

.checklist-info p {
    color: var(--color-text-light);
    font-size: 18px;
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.checklist-item {
    display: flex;
    gap: 16px;
}

.check-icon {
    font-size: 24px;
    color: var(--color-primary);
    font-weight: bold;
    flex-shrink: 0;
}

.checklist-item h4 {
    margin-bottom: 4px;
}

.checklist-item p {
    font-size: 16px;
    color: var(--color-text-light);
}

/* SECTION 4: quote-highlight */
.quote-section {
    padding: 100px 0;
    background-color: var(--color-accent);
    color: var(--bg-tint);
    text-align: center;
}

.quote-box {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.vintage-quote-mark {
    font-family: var(--font-heading);
    font-size: 120px;
    line-height: 1;
    color: var(--color-secondary);
    display: block;
    height: 60px;
    opacity: 0.5;
}

.quote-box blockquote {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 32px);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.4;
}

.quote-box cite {
    font-family: var(--font-body);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-secondary);
}

/* SECTION 5: expert-block */
.expert-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.expert-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.expert-placeholder {
    background-color: var(--bg-tint);
    border: 2px dashed var(--color-primary);
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.expert-placeholder span {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expert-content .expert-quote {
    font-style: italic;
    border-left: 4px solid var(--color-primary);
    padding-left: 20px;
    margin: 24px 0;
    font-size: 18px;
    color: var(--color-accent);
}

.expert-meta {
    display: flex;
    flex-direction: column;
}

.expert-meta strong {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-text);
}

.expert-meta span {
    font-size: 15px;
    color: var(--color-text-light);
}

/* Page Intro Common Styles */
.page-intro {
    padding: 80px 0 40px;
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(192, 74, 26, 0.08);
}

.page-intro h1 {
    display: inline-block;
    margin-bottom: 16px;
}

.page-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--color-text-light);
}

/* PROGRAM PAGE: Accordion Styles */
.program-accordion-section {
    padding: 80px 0;
}

.accordion-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.vintage-accordion {
    background-color: var(--color-white);
    border-radius: 28px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    border: 1px solid rgba(192, 74, 26, 0.08);
    overflow: hidden;
}

.vintage-accordion summary {
    padding: 24px 32px;
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    outline: none;
}

.vintage-accordion summary::-webkit-details-marker {
    display: none;
}

.accordion-num {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 24px;
    margin-right: 16px;
}

.vintage-accordion summary h3 {
    margin: 0;
    flex: 1;
    font-size: clamp(18px, 2vw, 22px);
}

.accordion-arrow {
    font-size: 12px;
    color: var(--color-text-light);
    transition: transform 0.3s;
}

.vintage-accordion[open] .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 32px 32px 72px;
    border-top: 1px solid rgba(192, 74, 26, 0.05);
}

.accordion-content p {
    margin-bottom: 16px;
    color: var(--color-text);
}

.accordion-content ul {
    list-style-type: square;
    padding-left: 20px;
    color: var(--color-text-light);
}

.accordion-content li {
    margin-bottom: 8px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
}

.faq-card {
    background-color: var(--bg-tint);
    padding: 32px;
    border-radius: 28px;
    border: 1px solid rgba(192, 74, 26, 0.05);
}

.faq-card h4 {
    margin-bottom: 12px;
    color: var(--color-accent);
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background-color: var(--color-primary);
    color: var(--color-white);
}

.cta-banner h2 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-banner .btn {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.cta-banner .btn:hover {
    background-color: var(--color-white);
    color: var(--color-accent);
}

/* MISSION PAGE: Grid Values */
.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.value-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    border: 1px solid rgba(192, 74, 26, 0.05);
}

.value-number {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 16px;
}

/* Manifesto split layout */
.manifesto-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.manifesto-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.manifesto-text h2 {
    margin-bottom: 24px;
}

.manifesto-text p {
    margin-bottom: 16px;
    color: var(--color-text-light);
}

.vintage-framed-image {
    border-radius: 36px;
    border: 8px solid var(--bg-tint);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* CONTACT PAGE: Form & Layout */
.contact-split-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contact-form-wrapper {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    border: 1px solid rgba(192, 74, 26, 0.05);
}

.vintage-form .form-group {
    margin-bottom: 24px;
}

.vintage-form label {
    display: block;
    font-family: var(--font-heading);
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--color-accent);
}

.vintage-form input,
.vintage-form textarea {
    width: 100%;
    padding: 14px 20px;
    border-radius: 50px; /* Pill style for inputs */
    border: 1px solid rgba(192, 74, 26, 0.2);
    background-color: var(--bg-tint);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-text);
    outline: none;
    transition: border-color 0.3s;
}

.vintage-form textarea {
    border-radius: 24px; /* Slightly less pill-like but rounded */
}

.vintage-form input:focus,
.vintage-form textarea:focus {
    border-color: var(--color-primary);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background-color: var(--color-white);
    padding: 32px;
    border-radius: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.02);
}

.info-card h4 {
    color: var(--color-primary);
    margin-bottom: 8px;
}

.info-card .subtext {
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: 4px;
}

/* LEGAL PAGES */
.legal-content-section {
    padding: 80px 0;
}

.legal-content-section h1 {
    margin-bottom: 8px;
}

.updated-date {
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.legal-content-section h3 {
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--color-accent);
}

.legal-content-section p,
.legal-content-section ul {
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.legal-content-section ul {
    padding-left: 24px;
}

.legal-content-section li {
    margin-bottom: 12px;
}

/* THANK YOU PAGE */
.thank-you-section {
    padding: 100px 0;
}

.thank-badge {
    width: 80px;
    height: 80px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 32px;
}

.next-steps {
    margin: 48px 0;
    text-align: left;
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 36px;
}

.next-steps h3 {
    text-align: center;
    margin-bottom: 32px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.step-card {
    border-left: 3px solid var(--color-primary);
    padding-left: 20px;
}

.step-card h5 {
    font-size: 18px;
    margin-bottom: 8px;
}

.step-link {
    font-weight: bold;
    display: inline-block;
    margin-top: 8px;
}

/* FOOTER SECTION */
.site-footer {
    background-color: var(--color-accent) !important;
    color: var(--bg-tint) !important;
    padding: 80px 0 20px;
    border-top: 4px solid var(--color-primary);
}

.site-footer a {
    color: var(--bg-tint) !important;
}

.site-footer a:hover {
    color: var(--color-secondary) !important;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    color: var(--color-secondary) !important;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    color: var(--color-secondary) !important;
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 12px;
}

.footer-contact p {
    font-size: 15px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 240, 232, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* 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-accent);
    color: var(--bg-tint);
    border-top: 3px solid var(--color-primary);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 15px;
}

#cookie-banner a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cookie-btn-accept:hover {
    background-color: var(--color-secondary);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--bg-tint);
    border: 1px solid var(--bg-tint);
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn-decline:hover {
    background-color: rgba(255,255,255,0.1);
}

/* ==========================================
   MOBILE-FIRST MEDIA QUERIES (min-width)
   ========================================== */

/* Tablet and larger (768px) */
@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
        min-height: 400px;
    }

    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop and larger (1024px) */
@media (min-width: 1024px) {
    .hero-diagonal {
        flex-direction: row;
        min-height: 85vh;
    }

    .hero-content {
        padding: 80px;
        max-width: 50%;
    }

    .hero-image-wrapper {
        max-width: 50%;
        min-height: auto;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid-layout {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .checklist-wrapper {
        grid-template-columns: 1fr 2fr;
    }

    .expert-grid {
        grid-template-columns: 1fr 1.2fr;
    }

    .manifesto-wrapper {
        grid-template-columns: 1.2fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
    }

    .footer-main {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* Mobile Specific Header Adaptations (max-width) */
@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);
    }

    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-btns {
        width: 100%;
    }
    
    .cookie-btn-accept, .cookie-btn-decline {
        flex: 1;
        text-align: center;
    }
}