/* 
   Palette Name: rose-graphite
   Primary Color (Accents/Buttons): #9C1C66
   Secondary Color (Header/Footer/Dark): #34495E
   Accent Color (Decor/Hover): #F1A9B8
   Background Tint (Light Sections): #FFF5F9
*/

:root {
    --color-primary: #9C1C66;
    --color-secondary: #34495E;
    --color-accent: #F1A9B8;
    --bg-tint: #FFF5F9;
    --bg-white: #FFFFFF;
    --color-text-dark: #2B2B2B;
    --color-text-muted: #5A5A5A;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lora', Georgia, serif;
    
    /* Border-style: pill */
    --radius-pill: 999px;
    --radius-card: 32px;
    --radius-button: 50px;
    
    /* Shadow-style: subtle */
    --shadow-subtle: 0 4px 16px rgba(156, 28, 102, 0.06);
}

/* Base Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.1vw, 19px);
    line-height: 1.7;
    color: var(--color-text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo, .footer-logo {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    font-weight: 700;
    line-height: 1.25;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}
.text-center-mobile {text-align: center;}
/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.max-width-md {
    max-width: 800px;
}

.max-width-sm {
    max-width: 600px;
}

.text-center {
    text-align: center;
}

.section {
    padding: 60px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 100px 0;
    }
}

.bg-tint {
    background-color: var(--bg-tint);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    border-radius: var(--radius-button);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Header & Navigation */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-white);
    border-bottom: 1px solid rgba(156, 28, 102, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: var(--color-primary);
    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-primary);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: var(--radius-pill);
}

.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 {
    color: var(--color-secondary);
    font-weight: 600;
}

.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-white);
    box-shadow: var(--shadow-subtle);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(156, 28, 102, 0.05);
}

.mobile-nav a {
    color: var(--color-secondary);
    font-weight: 600;
    display: block;
    width: 100%;
}

@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: vertical-stack */
.hero-vertical-stack {
    display: flex;
    flex-direction: column;
}

.hero-image-wrapper {
    width: 100%;
    height: 45vh;
}

@media (min-width: 768px) {
    .hero-image-wrapper {
        height: 55vh;
    }
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-block {
    padding: 48px 16px;
    background-color: var(--bg-tint);
}

@media (min-width: 768px) {
    .hero-content-block {
        padding: 80px 24px;
    }
}

.vintage-badge {
    display: inline-block;
    padding: 6px 18px;
    background-color: var(--color-primary);
    color: var(--bg-white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: clamp(16px, 1.5vw, 22px);
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto 32px auto;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Section Headers */
.section-header {
    margin-bottom: 48px;
}

.section-tag {
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(156, 28, 102, 0.04);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-tint);
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.benefit-title {
    font-size: 22px;
    margin-bottom: 16px;
}

.benefit-text {
    color: var(--color-text-muted);
    font-size: 16px;
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-vertical {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-card {
    background-color: var(--bg-tint);
    padding: 32px;
    border-radius: var(--radius-card);
    border-left: 5px solid var(--color-primary);
}

.testimonial-stars {
    color: var(--color-primary);
    margin-bottom: 12px;
    font-size: 18px;
}

.testimonial-quote {
    font-style: italic;
    font-size: 18px;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-pill);
    background-color: var(--color-primary);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--color-secondary);
}

.author-role {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Checklist Block */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

.checklist-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.check-icon {
    width: 32px;
    height: 32px;
    background-color: var(--color-primary);
    color: var(--bg-white);
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.checklist-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-secondary);
}

.checklist-content p {
    color: var(--color-text-muted);
    font-size: 16px;
    margin-bottom: 0;
}

/* Expert Block */
.expert-card-wrapper {
    background-color: var(--bg-tint);
    border-radius: var(--radius-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .expert-card-wrapper {
        flex-direction: row;
    }
}

.expert-image-side {
    width: 100%;
}

@media (min-width: 992px) {
    .expert-image-side {
        width: 45%;
    }
}

.expert-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.expert-info-side {
    padding: 40px;
    width: 100%;
}

@media (min-width: 992px) {
    .expert-info-side {
        width: 55%;
        padding: 60px;
    }
}

.expert-badge {
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 16px;
}

.expert-title {
    font-size: 28px;
    margin-bottom: 24px;
}

.expert-quote {
    font-style: italic;
    font-size: 18px;
    color: var(--color-text-dark);
    border-left: 3px solid var(--color-primary);
    padding-left: 20px;
    margin-bottom: 32px;
}

.expert-meta {
    display: flex;
    flex-direction: column;
}

.expert-name {
    font-weight: bold;
    color: var(--color-secondary);
}

.expert-role {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* CTA Banner */
.cta-banner-section {
    position: relative;
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: var(--bg-white);
}

@media (min-width: 768px) {
    .cta-banner-section {
        padding: 120px 0;
    }
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(52, 73, 94, 0.85); /* secondary with opacity */
    z-index: 1;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    color: var(--bg-white);
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 20px;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 32px auto;
}

/* Program Page Layout: grid-6cards */
.page-intro {
    padding: 60px 0;
}

@media (min-width: 768px) {
    .page-intro {
        padding: 80px 0;
    }
}

.page-title {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.grid-6cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .grid-6cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-6cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.program-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(156, 28, 102, 0.04);
    position: relative;
    overflow: hidden;
}

.program-num {
    font-size: 48px;
    font-weight: 800;
    color: rgba(156, 28, 102, 0.1);
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: var(--font-heading);
}

.program-card-title {
    font-size: 20px;
    margin-bottom: 16px;
    padding-right: 40px;
}

.program-card-text {
    color: var(--color-text-muted);
    font-size: 16px;
    margin-bottom: 0;
}

/* Split Visual Section (Integrated Image) */
.split-visual-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .split-visual-container {
        flex-direction: row;
    }
}

.split-visual-text {
    width: 100%;
}

@media (min-width: 992px) {
    .split-visual-text {
        width: 50%;
    }
}

.split-visual-image-wrapper {
    width: 100%;
}

@media (min-width: 992px) {
    .split-visual-image-wrapper {
        width: 50%;
    }
}

.split-visual-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-subtle);
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-subtle);
}

.faq-question {
    font-size: 18px;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.faq-answer {
    color: var(--color-text-muted);
    font-size: 16px;
    margin-bottom: 0;
}

/* Mission Page: vertical-storytelling */
.story-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
    align-items: center;
}

@media (min-width: 768px) {
    .story-block {
        flex-direction: row;
        margin-bottom: 100px;
    }
    .story-reverse {
        flex-direction: row-reverse;
    }
}

.story-content {
    width: 100%;
}

@media (min-width: 768px) {
    .story-content {
        width: 50%;
    }
}

.story-step {
    color: var(--color-primary);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.story-title {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 20px;
}

.story-image {
    width: 100%;
}

@media (min-width: 768px) {
    .story-image {
        width: 50%;
    }
}

.story-img-element {
    width: 100%;
    height: auto;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-subtle);
}

/* Core Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-subtle);
}

.value-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    color: var(--bg-white);
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--color-text-muted);
    font-size: 16px;
    margin-bottom: 0;
}

/* Contact Page Layout: Split */
.contact-split-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

@media (min-width: 992px) {
    .contact-split-container {
        flex-direction: row;
        align-items: flex-start;
    }
}

.contact-form-side {
    width: 100%;
}

@media (min-width: 992px) {
    .contact-form-side {
        width: 60%;
    }
}

.contact-side-title {
    font-size: 28px;
    margin-bottom: 16px;
}

.contact-side-desc {
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(156, 28, 102, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--color-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(52, 73, 94, 0.2);
    border-radius: var(--radius-button);
    font-family: var(--font-body);
    font-size: 16px;
    background-color: var(--bg-white);
    transition: border-color 0.3s ease;
}

.form-group textarea {
    border-radius: 20px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.contact-info-side {
    width: 100%;
}

@media (min-width: 992px) {
    .contact-info-side {
        width: 40%;
        position: sticky;
        top: 40px;
    }
}

.info-card {
    padding: 40px 30px;
    border-radius: var(--radius-card);
}

.info-card-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.info-card-text {
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.info-text strong {
    color: var(--color-secondary);
    display: block;
    margin-bottom: 4px;
}

.info-text p,
.info-text a {
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.info-text a:hover {
    color: var(--color-primary);
}

/* Legal Pages Content */
.text-muted {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
}

/* Thank You Page */
.thank-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-primary);
    color: var(--bg-white);
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0 auto 32px auto;
}

.thank-next {
    padding: 32px;
    border-radius: var(--radius-card);
    margin: 32px auto;
    text-align: left;
}

.thank-next h3 {
    margin-bottom: 12px;
}

.thank-next p {
    margin-bottom: 0;
}

.thank-actions p {
    margin-bottom: 20px;
}

.thank-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer Section */
.site-footer {
    background-color: var(--color-secondary) !important;
    color: #FFFFFF !important;
    padding: 60px 0 20px 0;
    font-family: var(--font-body);
}

@media (min-width: 768px) {
    .site-footer {
        padding: 80px 0 30px 0;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .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: 28px;
    color: #FFFFFF !important;
    display: block;
    margin-bottom: 16px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 15px;
}

.footer-title {
    font-size: 18px;
    color: #FFFFFF !important;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-accent) !important;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 15px;
    margin-bottom: 12px;
}

.footer-phone,
.footer-email {
    color: #FFFFFF !important;
    font-weight: bold;
}

.footer-phone:hover,
.footer-email:hover {
    color: var(--color-accent) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 13px;
    margin-bottom: 0;
}

/* Cookie Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    transform: translateY(0);
    transition: transform 0.4s ease;
    background-color: var(--color-secondary);
    color: var(--bg-white);
    box-shadow: 0 -4px 24px 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;
    color: rgba(255, 255, 255, 0.9);
}

#cookie-banner a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept,
.cookie-btn-decline {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    border-radius: var(--radius-button);
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--color-primary);
    color: var(--bg-white);
}

.cookie-btn-accept:hover {
    background-color: var(--color-accent);
    color: var(--color-secondary);
}

.cookie-btn-decline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--bg-white);
}

.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;
    }
}