/* #4A1C10, #6B2A18, #D4900A, #FDF0EC */
:root {
    --color-primary: #4A1C10;
    --color-secondary: #6B2A18;
    --color-accent: #D4900A;
    --bg-tint: #FDF0EC;
    --text-dark: #2B110A;
    --text-light: #FFFFFF;
    --bg-white: #FFFFFF;
    --border-color: rgba(74, 28, 16, 0.15);
}

/* Base Styles & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-tint);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

/* Container */
.container-standard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 16px;
}

@media (min-width: 1024px) {
    .container-standard {
        padding: 80px 24px;
    }
}

/* Buttons (Pill border-style) */
.btn-primary, .btn-secondary, .form-submit-btn, .cookie-btn-accept, .cookie-btn-decline {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 50px; /* pill style */
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-height: 44px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--text-light);
    box-shadow: 0 2px 12px rgba(74, 28, 16, 0.15);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07); /* subtle shadow */
    z-index: 1000;
}

.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;
    color: var(--color-primary);
    z-index: 100;
}

/* 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;
    background-color: var(--color-primary);
    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-weight: 600;
    color: var(--color-primary);
}

.desktop-nav .nav-list a:hover {
    color: var(--color-accent);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--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(--text-light);
    font-weight: 600;
    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);
    }
}

/* HERO SECTION - ASYMMETRIC (DYNAMIC TECH STYLE) */
.hero-asymmetric {
    background-color: var(--bg-white);
    padding: 48px 16px;
    position: relative;
    overflow: hidden;
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.hero-text-block {
    max-width: 100%;
}

.hero-badge {
    background-color: var(--bg-tint);
    color: var(--color-primary);
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.hero-title {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.15;
    color: var(--color-primary);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-lead {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-dark);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-image-block {
    position: relative;
    width: 100%;
}

.hero-main-img {
    width: 100%;
    height: auto;
    border-radius: 36px; /* pill style for cards/images */
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    object-fit: cover;
}

@media (min-width: 768px) {
    .hero-asymmetric {
        padding: 80px 24px;
    }
    .hero-content-wrapper {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 48px;
    }
}

@media (min-width: 1024px) {
    /* Dynamic asymmetric layout: image overlapping out on desktop */
    .hero-content-wrapper {
        grid-template-columns: 520px 1fr;
        gap: 64px;
    }
    .hero-image-block {
        margin-right: -100px;
    }
}

/* SECTION COMMON STYLES */
.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.section-heading {
    font-size: clamp(28px, 4vw, 38px);
    color: var(--color-primary);
    margin-bottom: 16px;
    font-weight: 800;
}

.section-subheading {
    font-size: 16px;
    color: var(--text-dark);
    opacity: 0.85;
}

/* BENEFITS 2X2 GRID */
.benefits-section {
    background-color: var(--bg-tint);
}

.benefits-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 32px; /* pill-style card */
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

.benefit-card-title {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-card-text {
    font-size: 15px;
    color: var(--text-dark);
    opacity: 0.9;
}

@media (min-width: 768px) {
    .benefits-grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* TESTIMONIALS SECTION (VERTICAL LIST) */
.testimonials-section {
    background-color: var(--bg-white);
}

.testimonials-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--bg-tint);
    padding: 32px;
    border-radius: 36px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.testimonial-rating {
    color: var(--color-accent);
    font-size: 18px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar-placeholder {
    width: 48px;
    height: 48px;
    background-color: var(--color-secondary);
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 16px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--color-primary);
}

.author-role {
    font-size: 13px;
    opacity: 0.8;
}

/* STATS BAR */
.stats-bar-section {
    background-color: var(--color-primary);
    color: var(--text-light);
    padding: 40px 16px;
}

.stats-bar-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .stats-bar-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* COMPARISON TABLE */
.comparison-section {
    background-color: var(--bg-white);
}

.table-responsive-wrapper {
    overflow-x: auto;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border: 1px solid var(--border-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background-color: var(--bg-white);
    min-width: 600px;
}

.comparison-table th, .comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--color-secondary);
    color: var(--text-light);
    font-weight: 700;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: var(--bg-tint);
}

/* QUOTE HIGHLIGHT */
.quote-highlight-section {
    background-color: var(--bg-tint);
}

.quote-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border-radius: 36px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    position: relative;
}

.quote-icon {
    font-size: 72px;
    color: var(--color-accent);
    line-height: 1;
    display: block;
    height: 36px;
    font-family: Georgia, serif;
}

.quote-text {
    font-size: clamp(18px, 3vw, 22px);
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.quote-author {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

/* CTA BOTTOM */
.cta-bottom-section {
    background-color: var(--bg-white);
}

.cta-card {
    background-color: var(--color-secondary);
    color: var(--text-light);
    border-radius: 36px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.cta-title {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 16px;
    font-weight: 800;
}

.cta-text {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 32px auto;
    opacity: 0.9;
}

/* INNER HERO (PROGRAM / MISSION / CONTACTS) */
.inner-hero-section {
    background-color: var(--color-secondary);
    color: var(--text-light);
    text-align: center;
    padding: 60px 16px;
}

.inner-hero-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
    font-weight: 800;
}

.inner-hero-lead {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ACCORDION (PROGRAM.HTML) */
.accordion-program-section {
    background-color: var(--bg-white);
}

.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: var(--bg-tint);
    border-radius: 32px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    padding: 24px 32px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none; /* Hide default arrow */
}

.accordion-header::-webkit-details-marker {
    display: none; /* Hide default arrow Chrome */
}

.accordion-number {
    color: var(--color-accent);
    font-size: 20px;
}

.accordion-title {
    color: var(--color-primary);
    flex-grow: 1;
}

.accordion-content {
    padding: 32px;
    border-top: 1px solid rgba(74, 28, 16, 0.08);
    margin-top: 10px;
}

.accordion-content p {
    margin-bottom: 16px;
}

.accordion-content ul {
    list-style-type: square;
    padding-left: 20px;
}

.accordion-content li {
    margin-bottom: 8px;
}

/* FAQ SECTION */
.faq-section {
    background-color: var(--bg-tint);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 32px;
    border: 1px solid var(--border-color);
}

.faq-question {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-answer {
    font-size: 15px;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* PROGRAM VISUAL HIGHLIGHT */
.program-visual-highlight {
    background-color: var(--bg-white);
}

.program-visual-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.program-img-embedded {
    width: 100%;
    height: auto;
    border-radius: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

@media (min-width: 768px) {
    .program-visual-wrapper {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 48px;
    }
}

/* MISSION PAGE SPLIT LAYOUT */
.split-mission-section {
    background-color: var(--bg-white);
}

.mission-split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 16px;
}

.mission-side-img {
    width: 100%;
    height: auto;
    border-radius: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.mission-tag {
    background-color: var(--bg-tint);
    color: var(--color-primary);
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 16px;
}

.mission-main-title {
    font-size: clamp(28px, 4vw, 38px);
    color: var(--color-primary);
    margin-bottom: 24px;
}

.mission-paragraph {
    margin-bottom: 20px;
    font-size: 16px;
}

.values-list-wrapper {
    margin-top: 32px;
}

.values-list-title {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.values-bullet-list {
    list-style: none;
}

.values-bullet-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
}

.values-bullet-list li::before {
    content: "■";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
}

@media (min-width: 768px) {
    .mission-split-container {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 48px;
    }
}

/* MANIFESTO */
.manifesto-section {
    background-color: var(--bg-tint);
}

.manifesto-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 36px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    text-align: center;
}

.manifesto-title {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.manifesto-lead {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
}

.manifesto-divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 24px auto;
}

.manifesto-signature {
    font-weight: 700;
    color: var(--color-primary);
}

/* CONTACT PAGE SPLIT LAYOUT */
.contact-split-section {
    background-color: var(--bg-white);
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contact-section-title {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-weight: 800;
}

.contact-section-desc {
    margin-bottom: 32px;
    font-size: 15px;
}

/* FORM FIELDS (Pill style applied to inputs) */
.styled-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    font-size: 14px;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 14px 24px;
    border: 1px solid var(--border-color);
    border-radius: 50px; /* pill style */
    background-color: var(--bg-tint);
    font-size: 15px;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-textarea {
    border-radius: 24px; /* adjusted pill for textarea */
    min-height: 120px;
    resize: vertical;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--color-primary);
}

/* INFO SIDE */
.info-card-accent {
    background-color: var(--bg-tint);
    padding: 32px;
    border-radius: 36px;
    border: 1px solid var(--border-color);
}

.info-card-title {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.info-card-text {
    font-size: 15px;
    margin-bottom: 24px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.detail-icon {
    font-size: 24px;
    color: var(--color-accent);
}

.detail-text-block {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.7;
}

.detail-link, .detail-value {
    font-size: 15px;
    font-weight: 600;
}

.hours-card {
    margin-top: 24px;
    background-color: var(--color-primary);
    color: var(--text-light);
    padding: 24px 32px;
    border-radius: 36px;
}

.hours-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.hours-text {
    font-size: 14px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .contact-grid-layout {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

/* LEGAL PAGES */
.legal-page-main {
    background-color: var(--bg-white);
}

.legal-title {
    font-size: clamp(28px, 4vw, 38px);
    color: var(--color-primary);
    margin-bottom: 8px;
    font-weight: 800;
}

.legal-last-update {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 32px;
}

.legal-section h2 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.legal-section p {
    margin-bottom: 16px;
}

.legal-section ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-section li {
    margin-bottom: 8px;
}

/* THANK YOU PAGE */
.thank-page-main {
    background-color: var(--bg-white);
}

.thank-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-tint);
    border-radius: 36px;
    padding: 48px 32px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.thank-icon-badge {
    width: 80px;
    height: 80px;
    background-color: var(--color-primary);
    color: var(--text-light);
    font-size: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 24px auto;
}

.thank-title {
    font-size: clamp(24px, 4vw, 36px);
    color: var(--color-primary);
    margin-bottom: 16px;
    font-weight: 800;
}

.thank-lead {
    font-size: 16px;
    margin-bottom: 32px;
}

.next-steps-box {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 24px;
    text-align: left;
    margin-bottom: 32px;
    border: 1px solid var(--border-color);
}

.next-steps-title {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.next-steps-list {
    padding-left: 20px;
}

.next-steps-list li {
    margin-bottom: 12px;
}

.thank-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* FOOTER (STRICT STYLING) */
.site-footer {
    background-color: var(--color-secondary) !important;
    color: var(--text-light) !important;
    padding: 48px 16px 24px 16px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-accent) !important;
    display: block;
    margin-bottom: 16px;
}

.footer-brand .footer-description {
    font-size: 14px;
    opacity: 0.8;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-accent) !important;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
}

.footer-links li, .footer-legal li {
    margin-bottom: 10px;
}

.footer-links a, .footer-legal a {
    color: var(--text-light) !important;
    opacity: 0.8;
    font-size: 14px;
}

.footer-links a:hover, .footer-legal a:hover {
    opacity: 1;
    color: var(--color-accent) !important;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-contact a {
    color: var(--text-light) !important;
    font-weight: bold;
}

.footer-contact a:hover {
    color: var(--color-accent) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 12px;
    opacity: 0.7;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    }
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 18px 24px;
    background-color: var(--color-primary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    transform: translateY(0);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

#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;
    font-weight: 600;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--color-accent);
    color: var(--text-dark);
    padding: 8px 20px;
    font-size: 14px;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    padding: 8px 20px;
    font-size: 14px;
}

@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;
    }
}