/* 
   Palette: ocean-rose
   Primary: #0A3245
   Secondary: #174E66
   Accent: #B83050
   Tint: #F0F7FB
*/

:root {
    --color-primary: #0A3245;
    --color-secondary: #174E66;
    --color-accent: #B83050;
    --bg-tint: #F0F7FB;
    --color-white: #ffffff;
    --color-text-dark: #121c21;
    --color-text-light: #f5f9fc;
    
    /* Design Style: bold-editorial typography & spacings */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Border style: pill */
    --radius-pill: 999px;
    --radius-button: 50px;
    --radius-card: 32px;
    
    /* Shadow style: dramatic */
    --shadow-dramatic: 0 24px 64px rgba(10, 50, 69, 0.18);
    --shadow-dramatic-hover: 0 32px 80px rgba(10, 50, 69, 0.28);
}

/* Base Reset & Mobile-First Setup */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    font-size: clamp(15px, 2.5vw, 17px);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-primary);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


.mixed-mode section:nth-of-type(even) {
    background-color: var(--color-white);
}

/* Layout Containers */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 16px;
}

.content-container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 16px;
}

/* Buttons (Pill border-style) */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: bold;
    text-align: center;
    border-radius: var(--radius-button);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-dramatic-hover);
}

.btn-secondary {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-accent:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-dramatic-hover);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header & Hamburger Menu */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-primary);
    border-bottom: 2px 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-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--color-white) !important;
    z-index: 100;
}

.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    display: none;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    margin: 5px 0;
    background-color: var(--color-white);
    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-text-light);
    font-weight: 600;
    font-size: 16px;
}

.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(--color-text-light);
    font-weight: bold;
    font-size: 18px;
    display: block;
}

/* Mobile Adaptive 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);
    }
}

/* HERO SECTION: circle-image layout */
.hero-section {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    padding: 48px 16px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1.2fr 0.8fr;
        padding: 40px 0;
    }
}

.hero-text {
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 6px 18px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 64px);
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.5;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
}

.hero-circle-image {
    width: clamp(260px, 40vw, 420px);
    height: clamp(260px, 40vw, 420px);
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 8px solid var(--color-accent);
    box-shadow: var(--shadow-dramatic);
}

/* Intro Section Grid */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .intro-grid {
        grid-template-columns: 1.3fr 0.7fr;
    }
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--color-accent);
    border-radius: var(--radius-pill);
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.text-center {
    text-align: center;
}

.intro-content p {
    margin-bottom: 16px;
}

.intro-side-card {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    padding: 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
}

.intro-side-card h3 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.intro-list {
    list-style: none;
}

.intro-list li {
    margin-bottom: 16px;
    position: relative;
    padding-left: 20px;
}

.intro-list li::before {
    content: '•';
    color: var(--color-accent);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -4px;
}

/* SECTION 1: benefits-hscroll */
.section-lead {
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.hscroll-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 24px 8px 40px 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.hscroll-container::-webkit-scrollbar {
    height: 8px;
}

.hscroll-container::-webkit-scrollbar-thumb {
    background-color: var(--color-accent);
    border-radius: 4px;
}

.benefit-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background-color: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(10, 50, 69, 0.05);
}

@media (min-width: 768px) {
    .benefit-card {
        flex: 0 0 340px;
    }
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dramatic-hover);
}

.card-number {
    display: inline-block;
    font-size: 40px;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.benefit-card h3 {
    margin-bottom: 12px;
}

/* SECTION 2: quote-highlight */
.quote-section {
    background-color: var(--color-primary) !important;
    color: var(--color-text-light);
    padding: 80px 16px;
}

.quote-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 120px;
    font-family: var(--font-heading);
    color: var(--color-accent);
    line-height: 0;
    display: block;
    height: 40px;
    margin-bottom: 24px;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 32px);
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 24px;
}

.quote-author {
    font-family: var(--font-body);
    font-weight: bold;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SECTION 3: accordion-faq */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-white);
    margin-bottom: 16px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    overflow: hidden;
    border: 1px solid rgba(10, 50, 69, 0.05);
    transition: 0.3s ease;
}

.faq-item summary {
    padding: 24px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    font-family: var(--font-heading);
    color: var(--color-primary);
    list-style: none;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--color-accent);
    font-weight: bold;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-answer {
    padding: 0 24px 24px 24px;
    border-top: 1px solid rgba(10, 50, 69, 0.05);
}

.faq-answer p {
    margin-top: 16px;
}

/* SPLIT BLOCK */
.split-visual-section {
    padding: 0 !important;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .split-container {
        grid-template-columns: 1fr 1fr;
    }
}

.split-image {
    min-height: 350px;
    background-size: cover;
    background-position: center;
}

.split-content {
    padding: 60px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .split-content {
        padding: 80px 60px;
    }
}

.split-content p {
    margin-bottom: 24px;
}

/* SECTION 4: expert-block */
.expert-card {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.expert-badge {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 16px;
}

.expert-card h3 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.expert-quote {
    font-size: clamp(16px, 2.5vw, 22px);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 24px;
    border-left: 4px solid var(--color-accent);
    padding-left: 20px;
}

.expert-name {
    display: block;
    font-weight: bold;
    font-size: 18px;
}

.expert-title {
    display: block;
    font-size: 14px;
    opacity: 0.8;
}

/* SECTION 5: cta-banner */
.cta-banner-section {
    padding: 60px 16px;
}

.cta-banner-box {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    padding: 60px 24px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-banner-box h2 {
    color: var(--color-white);
    font-size: clamp(26px, 4vw, 40px);
    margin-bottom: 16px;
}

.cta-banner-box p {
    max-width: 600px;
    margin: 0 auto 32px auto;
    font-size: 18px;
    opacity: 0.9;
}

/* PROGRAM.HTML: numbered-sections layout */
.page-header-section {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    text-align: center;
    padding: 80px 16px;
}

.page-header-section h1 {
    color: var(--color-white);
}

.page-badge {
    color: var(--color-accent);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.page-title {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 20px;
}

.page-lead {
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
    opacity: 0.9;
}

.numbered-program-section {
    padding: 60px 16px;
}

.numbered-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .numbered-block {
        grid-template-columns: 0.2fr 0.8fr;
    }
}

.block-number {
    font-family: var(--font-heading);
    font-size: clamp(60px, 8vw, 90px);
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
}

.block-content h2 {
    margin-bottom: 16px;
}

.block-content p {
    margin-bottom: 16px;
}

/* Image Card Split */
.image-card-split {
    display: grid;
    grid-template-columns: 1fr;
    background-color: var(--color-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .image-card-split {
        grid-template-columns: 1fr 1fr;
    }
}

.split-text-left {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image-right {
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    background-color: var(--color-white);
    padding: 40px 24px;
    text-align: center;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    border: 1px solid rgba(10, 50, 69, 0.05);
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 12px;
}

/* MISSION.HTML: story-team layout */
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .story-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.story-text p {
    margin-bottom: 20px;
}

.story-image-wrapper {
    text-align: center;
}

.story-image {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    margin-bottom: 12px;
}

.image-caption {
    font-size: 14px;
    font-style: italic;
    opacity: 0.8;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background-color: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    border-top: 4px solid var(--color-accent);
}

.value-card h3 {
    margin-bottom: 16px;
}

/* Manifesto Box */
.manifesto-box {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    padding: 60px 24px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-box h2 {
    color: var(--color-white);
    margin-bottom: 24px;
}

.manifesto-lead {
    font-family: var(--font-heading);
    font-size: clamp(18px, 3.5vw, 26px);
    font-style: italic;
    line-height: 1.5;
}

/* CONTACT.HTML: Form left (60%), Contacts right (40%) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.contact-form-wrapper {
    background-color: var(--color-white);
    padding: 40px 24px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    border: 1px solid rgba(10, 50, 69, 0.05);
}

.contact-form-wrapper h2 {
    margin-bottom: 12px;
}

.form-intro {
    margin-bottom: 32px;
}

.educational-form {
    max-width: 800px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--bg-tint);
    border-radius: 16px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: var(--bg-tint);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background-color: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    border: 1px solid rgba(10, 50, 69, 0.05);
}

.info-card h3 {
    margin-bottom: 16px;
}

.info-item {
    margin-bottom: 16px;
}

.contact-link {
    font-weight: bold;
}

.schedule-list {
    list-style: none;
    margin-top: 16px;
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(10, 50, 69, 0.1);
}

/* LEGAL PAGES */
.legal-content-section {
    padding: 60px 16px;
}

.last-updated {
    font-style: italic;
    opacity: 0.7;
    margin-bottom: 32px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    margin-bottom: 16px;
}

.legal-section p {
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.disclaimer-box {
    background-color: var(--bg-tint);
    border-left: 6px solid var(--color-accent);
    padding: 24px;
    border-radius: var(--radius-card);
}

/* THANK YOU PAGE */
.thank-you-section {
    padding: 80px 16px;
}

.thank-badge {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    font-weight: bold;
    display: inline-block;
    margin-bottom: 24px;
}

.next-steps-box {
    background-color: var(--bg-tint);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    padding: 40px;
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.next-steps-box h2 {
    margin-bottom: 16px;
}

.next-steps-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

/* FOOTER SECTION (Identical across all pages) */
.site-footer {
    background-color: var(--color-secondary) !important;
    color: var(--color-text-light) !important;
    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;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 14px;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    color: var(--color-white) !important;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-legal a {
    color: var(--color-text-light) !important;
    opacity: 0.8;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-accent) !important;
    opacity: 1;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.footer-contact a {
    color: var(--color-white) !important;
    font-weight: bold;
}

.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: 13px;
    opacity: 0.7;
}

/* 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(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    transform: translateY(0);
    transition: transform 0.4s ease;
    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-white);
    text-decoration: underline;
    font-weight: bold;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: 0.3s;
}

.cookie-btn-accept:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-text-light);
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: 0.3s;
}

.cookie-btn-decline:hover {
    background-color: rgba(255,255,255,0.1);
}

@media (max-width: 600px) {
    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-btns {
        width: 100%;
    }
    .cookie-btn-accept, .cookie-btn-decline {
        flex: 1;
        text-align: center;
    }
}