/* 
   COLORS PALETTE: rose-navy
   Primary: #C2185B (Buttons, accents, titles of accent sections)
   Secondary: #D81B60 (Hero overlays, footer, dark sections)
   Accent: #0D2B5E (Icons, hover states, decor, underlines)
   Bg Tint: #FDE8F0 (Light section backgrounds)
   
   DESIGN SYSTEM: dynamic-tech (Geometric shapes, alternating dark/light, glassmorphism, dramatic shadows)
   BORDER STYLE: pill (border-radius: 50px for buttons, 28-36px for cards, 999px for tags)
   SHADOW STYLE: dramatic (box-shadow: 0 24px 64px rgba(13, 27, 94, 0.22))
   COLOR MODE: light (light backgrounds with rose/navy accents)
*/

:root {
    --color-primary: #C2185B;
    --color-secondary: #D81B60;
    --color-accent: #0D2B5E;
    --bg-tint: #FDE8F0;
    --text-dark: #1F1F2F;
    --text-light: #FFFFFF;
    --transition-speed: 0.35s;
}

/* Base Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-tint);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 16px;
}

@media (min-width: 768px) {
    .section-container {
        padding: 80px 24px;
    }
}

/* Responsive Grids (Mobile-First) */
.grid-two-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .grid-two-cols {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
}

.grid-four-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 576px) {
    .grid-four-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-four-cols {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* UI Elements & Pill Borders */
.btn-primary-pill {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--text-light);
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    border: 2px solid var(--color-primary);
    box-shadow: 0 12px 24px rgba(194, 24, 91, 0.3);
    cursor: pointer;
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-pill:hover {
    background-color: transparent;
    color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(194, 24, 91, 0.4);
}

.btn-secondary-pill {
    display: inline-block;
    background-color: transparent;
    color: var(--text-light);
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    border: 2px solid var(--text-light);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.btn-secondary-pill:hover {
    background-color: var(--text-light);
    color: var(--color-accent);
    transform: translateY(-4px);
}

.category-badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--text-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.section-tag {
    display: inline-block;
    color: var(--color-primary);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* Header Layout & Burger Menu */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-tint);
    border-bottom: 1px solid rgba(13, 43, 94, 0.1);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-accent);
    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;
    background-color: var(--color-accent);
    margin: 5px 0;
    transition: 0.3s;
}

.menu-checkbox {
    display: none;
}

.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-accent);
    font-size: 16px;
}

.desktop-nav .nav-list a:hover {
    color: var(--color-primary);
}

.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(--bg-tint);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(13, 43, 94, 0.1);
}

.mobile-nav a {
    font-weight: 600;
    color: var(--color-accent);
    display: block;
}

@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 Fullscreen Center */
.hero-fullscreen {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.hero-content-center {
    max-width: 850px;
    z-index: 10;
}

.hero-main-title {
    font-size: clamp(28px, 5vw, 52px);
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-lead-text {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-action-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 576px) {
    .hero-action-group {
        flex-direction: row;
    }
}

/* Common Section Headers */
.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px auto;
}

.section-title {
    font-size: clamp(24px, 4vw, 38px);
    color: var(--color-accent);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: clamp(15px, 2.5vw, 18px);
    color: var(--text-dark);
    opacity: 0.85;
}

/* SECTION 1: TIMELINE (Benefits Timeline) */
.timeline-section {
    background-color: var(--bg-tint);
    position: relative;
}

.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 24px;
    border-left: 3px solid var(--color-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: -42px;
    top: 0;
    background-color: var(--color-primary);
    color: var(--text-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    border: 3px solid var(--bg-tint);
    box-shadow: 0 4px 10px rgba(194, 24, 91, 0.3);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 28px;
    border-radius: 28px;
    box-shadow: 0 24px 64px rgba(13, 43, 94, 0.1);
    border: 1px solid rgba(13, 43, 94, 0.05);
}

.timeline-item-title {
    font-size: 20px;
    color: var(--color-accent);
    margin-bottom: 12px;
    font-weight: 700;
}

/* SECTION 2: TWO COLUMNS PROMO */
.two-column-promo {
    background-color: #FFFFFF;
    position: relative;
}

.promo-image-wrapper {
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(13, 43, 94, 0.15);
}

.promo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promo-image:hover {
    transform: scale(1.03);
}

.promo-text-wrapper h2 {
    margin-bottom: 20px;
}

.promo-paragraph {
    margin-bottom: 16px;
    font-size: 16px;
}

.promo-list {
    list-style: none;
    margin-top: 24px;
}

.promo-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

.promo-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 18px;
}

/* SECTION 3: COMPARISON TABLE */
.comparison-section {
    background-color: var(--bg-tint);
}

.table-responsive-wrapper {
    overflow-x: auto;
    border-radius: 28px;
    box-shadow: 0 24px 64px rgba(13, 43, 94, 0.15);
    background: #FFFFFF;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 700px;
}

.comparison-table th, .comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(13, 43, 94, 0.1);
}

.comparison-table th {
    background-color: var(--color-accent);
    color: var(--text-light);
    font-weight: 700;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.status-good {
    color: #C2185B;
    font-weight: bold;
}

.status-bad {
    color: var(--color-accent);
    font-weight: bold;
}

.status-warning {
    color: #D81B60;
    font-weight: bold;
}

/* SECTION 4: TESTIMONIALS */
.testimonials-section {
    background-color: #FFFFFF;
}

.testimonials-stack {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-tint);
    padding: 36px;
    border-radius: 36px;
    box-shadow: 0 24px 64px rgba(13, 43, 94, 0.12);
    border: 1px solid rgba(194, 24, 91, 0.1);
    transition: transform var(--transition-speed) ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-rating {
    color: var(--color-primary);
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-style: italic;
    font-size: 17px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: bold;
    color: var(--color-accent);
    font-size: 16px;
}

.author-role {
    font-size: 13px;
    color: var(--text-dark);
    opacity: 0.7;
}

/* SECTION 5: QUOTE HIGHLIGHT */
.quote-highlight-section {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
    color: var(--text-light);
    text-align: center;
}

.quote-box {
    max-width: 850px;
    margin: 0 auto;
    padding: 40px 20px;
}

.quote-icon {
    font-size: 72px;
    font-family: Georgia, serif;
    line-height: 1;
    display: block;
    color: var(--color-primary);
    margin-bottom: -20px;
}

.highlight-blockquote {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 24px;
    font-style: italic;
}

.quote-author {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bg-tint);
}

/* PROGRAM PAGE: TABS SYSTEM (Scientific Angle) */
.intro-section {
    padding: 80px 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.page-main-title {
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 800;
    margin-bottom: 16px;
}

.page-lead-text {
    font-size: clamp(16px, 2.5vw, 18px);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.tabs-section {
    background-color: #FFFFFF;
}

.tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
    justify-content: center;
}

.tabs-nav label {
    padding: 14px 28px;
    background-color: var(--bg-tint);
    color: var(--color-accent);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
}

.tabs-nav label:hover {
    background-color: rgba(194, 24, 91, 0.1);
}

input[name="tabs"] {
    display: none;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

#t1:checked ~ #p1,
#t2:checked ~ #p2,
#t3:checked ~ #p3,
#t4:checked ~ #p4 {
    display: block;
}

#t1:checked ~ .tabs-nav label[for="t1"],
#t2:checked ~ .tabs-nav label[for="t2"],
#t3:checked ~ .tabs-nav label[for="t3"],
#t4:checked ~ .tabs-nav label[for="t4"] {
    background-color: var(--color-primary);
    color: var(--text-light);
    box-shadow: 0 8px 20px rgba(194, 24, 91, 0.25);
}

.tab-panel-content {
    background-color: var(--bg-tint);
    padding: 40px;
    border-radius: 36px;
    box-shadow: 0 24px 64px rgba(13, 43, 94, 0.1);
}

.tab-panel-content h3 {
    font-size: 24px;
    color: var(--color-accent);
    margin-bottom: 16px;
    font-weight: 700;
}

.tab-panel-content p {
    margin-bottom: 16px;
}

.tab-panel-content p:last-child {
    margin-bottom: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* STATS TECH SECTION */
.stats-tech-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--text-light);
}

.stat-tech-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 32px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ SECTION (GRID) */
.faq-section {
    background-color: var(--bg-tint);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-card {
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 32px;
    box-shadow: 0 24px 64px rgba(13, 43, 94, 0.08);
    border: 1px solid rgba(13, 43, 94, 0.05);
}

.faq-question {
    font-size: 18px;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 12px;
}

/* MISSION PAGE: VALUES & FOUNDER STORY */
.values-section {
    background-color: #FFFFFF;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-card {
    background-color: var(--bg-tint);
    padding: 40px;
    border-radius: 36px;
    box-shadow: 0 24px 64px rgba(13, 43, 94, 0.08);
    border: 1px solid rgba(194, 24, 91, 0.05);
}

.value-icon-wrapper {
    font-size: 36px;
    margin-bottom: 20px;
}

.value-card-title {
    font-size: 20px;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 12px;
}

.founder-story-section {
    background-color: var(--bg-tint);
}

.founder-paragraph {
    margin-bottom: 16px;
}

.founder-visual {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    padding: 48px;
    border-radius: 36px;
    color: var(--text-light);
    box-shadow: 0 24px 64px rgba(13, 43, 94, 0.18);
    display: flex;
    align-items: center;
}

.visual-quote-text {
    font-size: 20px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 24px;
}

.visual-quote-author {
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
}

/* CONTACT PAGE: FORM & DETAILS */
.contact-main-section {
    background-color: #FFFFFF;
}

.contact-info-block {
    padding-right: 16px;
}

.contact-detail-card {
    background-color: var(--bg-tint);
    padding: 36px;
    border-radius: 36px;
    margin-top: 24px;
    box-shadow: 0 24px 64px rgba(13, 43, 94, 0.08);
}

.contact-detail-item {
    margin-bottom: 24px;
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.contact-detail-item strong {
    display: block;
    color: var(--color-accent);
    font-size: 16px;
    margin-bottom: 6px;
}

.contact-email-link {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 600;
}

.contact-form-block {
    background-color: var(--bg-tint);
    padding: 40px;
    border-radius: 36px;
    box-shadow: 0 24px 64px rgba(13, 43, 94, 0.15);
}

.custom-pill-form {
    margin-top: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-accent);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 14px 24px;
    border: 2px solid rgba(13, 43, 94, 0.1);
    background-color: #FFFFFF;
    border-radius: 50px;
    font-size: 15px;
    color: var(--text-dark);
    outline: none;
    transition: border-color var(--transition-speed) ease;
}

.form-textarea {
    border-radius: 28px;
    resize: none;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--color-primary);
}

.form-submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* LEGAL PAGES & THANK YOU */
.legal-page-content {
    background-color: #FFFFFF;
}

.legal-title {
    font-size: clamp(28px, 5vw, 42px);
    color: var(--color-accent);
    font-weight: 800;
    margin-bottom: 8px;
}

.legal-update-date {
    color: var(--text-dark);
    opacity: 0.6;
    margin-bottom: 40px;
}

.legal-section-block {
    margin-bottom: 32px;
}

.legal-section-block h2 {
    font-size: 20px;
    color: var(--color-accent);
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-section-block ul {
    padding-left: 20px;
    margin-top: 12px;
}

.legal-section-block li {
    margin-bottom: 8px;
}

.disclaimer-highlight {
    background-color: var(--bg-tint);
    padding: 24px;
    border-radius: 28px;
    border-left: 4px solid var(--color-primary);
}

.thank-you-section {
    background-color: var(--bg-tint);
    text-align: center;
}

.thank-you-card {
    background-color: #FFFFFF;
    padding: 48px;
    border-radius: 36px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 24px 64px rgba(13, 43, 94, 0.15);
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--color-primary);
    color: var(--text-light);
    font-size: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    box-shadow: 0 12px 24px rgba(194, 24, 91, 0.3);
}

.thank-title {
    font-size: 28px;
    color: var(--color-accent);
    font-weight: 800;
    margin-bottom: 16px;
}

.thank-desc {
    font-size: 16px;
    margin-bottom: 32px;
}

.next-steps-block {
    border-top: 1px solid rgba(13, 43, 94, 0.1);
    padding-top: 24px;
}

.next-steps-block h3 {
    font-size: 18px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.thank-links-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

@media (min-width: 576px) {
    .thank-links-group {
        flex-direction: row;
    }
}

/* FOOTER LAYOUT (Contrast Protected) */
.site-footer {
    padding: 60px 10px 30px 10px;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 576px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
}

.footer-logo {
    font-size: 26px;
    font-weight: 800;
    display: block;
    margin-bottom: 16px;
}

.footer-desc {
    line-height: 1.5;
    opacity: 0.9;
}

.footer-grid h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid li {
    margin-bottom: 12px;
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.5;
}

/* COOKIE BANNER STYLE */
#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(--text-light);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 14px;
}

#cookie-banner a {
    color: var(--text-light);
    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-primary);
    color: var(--text-light);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.cookie-btn-accept:hover {
    background-color: var(--color-secondary);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.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;
    }
}