/* =========================================
   VARIABLES & DESIGN SYSTEM
   ========================================= */
:root {
    /* Colors */
    --navy: #0A192F;
    --navy-light: #112240;
    --navy-lighter: #233554;
    --sand: #F7F5F0;
    --sand-dark: #E6E2D8;
    --accent: #D4AF37; /* Elegant gold/bronze for CTA */
    --accent-hover: #b5952f;
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;

    /* Effects */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 4px 6px -1px rgba(10, 25, 47, 0.1), 0 2px 4px -1px rgba(10, 25, 47, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(10, 25, 47, 0.1), 0 4px 6px -2px rgba(10, 25, 47, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(10, 25, 47, 0.1), 0 10px 10px -5px rgba(10, 25, 47, 0.04);
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--sand);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.1;
    color: var(--navy);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.text-accent {
    color: var(--accent);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, #e8c85c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Background Utilities */
.bg-navy { background-color: var(--navy); }
.bg-white { background-color: var(--white); }
.bg-sand { background-color: var(--sand); }

/* Text Utilities */
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }

.relative { position: relative; }
.z-10 { z-index: 10; }

/* =========================================
   COMPONENTS
   ========================================= */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.arrow-icon {
    transition: transform var(--transition-fast);
}

.btn:hover .arrow-icon {
    transform: translateX(4px);
}

/* Magnetic effect wrapper */
.magnetic {
    display: inline-block;
}

/* =========================================
   HEADER
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: all var(--transition-fast);
    padding: var(--space-sm) 0;
}

.header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.logo:hover .logo-img {
    opacity: 0.85;
    transform: rotate(-10deg);
}

/* On dark footer: invert navy to white, keep gold intact */
.logo-img--footer {
    filter: brightness(0) invert(1);
    height: 52px;
}

.logo-text-group {
    display: flex;
    gap: 0.3rem;
}

.logo-text-navy {
    color: var(--navy);
    font-weight: 700;
}

.logo-text-white {
    color: var(--white);
    font-weight: 700;
}

.logo-text-gold {
    color: var(--accent);
    font-weight: 800;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-link {
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--navy);
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 40;
    transition: right var(--transition-normal);
    display: flex;
    flex-direction: column;
    padding: var(--space-xl) var(--space-md);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-nav-link {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .mobile-menu-btn { display: block; }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--space-xl);
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%; /* Extra height for parallax */
    z-index: 0;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--sand) 0%, rgba(247, 245, 240, 0.4) 100%);
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 750px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-md);
    border: 1px solid var(--glass-border);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-sm);
    filter: drop-shadow(0 4px 12px rgba(10, 25, 47, 0.15));
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--navy-lighter);
    margin-bottom: var(--space-lg);
    max-width: 90%;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatar-group-img {
    height: 40px;
    width: auto;
    border-radius: var(--radius-full);
}

.trust-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy-lighter);
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(212, 175, 55, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        text-align: center;
    }
    .hero-subtitle {
        text-align: center;
        margin: 0 auto var(--space-lg) auto;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }
    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }
    .hero-overlay {
        background: linear-gradient(to bottom, var(--sand) 0%, rgba(247, 245, 240, 0.8) 100%);
    }
}

/* =========================================
   COMMON SECTION STYLES
   ========================================= */
.section {
    padding: var(--space-xl) 0;
}

.section-header {
    max-width: 700px;
    margin: 0 auto var(--space-lg) auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--navy-lighter);
}

.text-center { text-align: center; }

/* =========================================
   FEATURES SECTION
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.feature-card {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border: 1px solid var(--sand-dark);
    /* 3D setup */
    transform-style: preserve-3d;
    will-change: transform;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
}

.icon-wrapper {
    width: 3rem;
    height: 3rem;
    background: var(--sand);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--navy-lighter);
    font-size: 0.95rem;
}

/* =========================================
   STATS / ROI / BEFORE-AFTER SECTION
   ========================================= */
.stats-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.pattern-bg {
    background-image: radial-gradient(var(--navy-lighter) 1px, transparent 1px);
    background-size: 20px 20px;
}

.container-large {
    max-width: 1400px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

@media (max-width: 992px) {
    .stats-grid { grid-template-columns: 1fr; }
}

/* Before / After Slider */
.comparison-container {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: rgba(17, 34, 64, 0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.section-label {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.section-heading {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.ba-slider {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    overflow: hidden;
    user-select: none;
    box-shadow: var(--shadow-lg);
}

.ba-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-after {
    transform: scale(1.15);
    transform-origin: center 12%;
}

.ba-label {
    position: absolute;
    top: 20px;
    z-index: 5;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-label-before {
    left: 20px;
}

.ba-label-after {
    right: 20px;
}

.ba-clip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0 50% 0 0);
    z-index: 10;
}

.ba-clip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.3);
    z-index: 20;
}

.ba-handle::before, .ba-handle::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 1000px;
    background: var(--accent);
    left: 50%;
    transform: translateX(-50%);
}
.ba-handle::before { bottom: 100%; }
.ba-handle::after { top: 100%; }

.ba-arrows {
    display: flex;
    color: var(--white);
    gap: 2px;
}

/* ROI Calculator */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
}

.roi-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.roi-subtitle {
    color: #a0aec0;
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.slider-group {
    margin-bottom: 1.5rem;
}

.slider-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #e2e8f0;
}

.custom-range {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    outline: none;
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.custom-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.roi-result {
    margin-top: var(--space-md);
    background: rgba(10, 25, 47, 0.8);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.result-box { margin-bottom: 1rem; }
.result-box:last-child { margin-bottom: 0; }

.result-label {
    font-size: 0.875rem;
    color: #a0aec0;
    margin-bottom: 0.25rem;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.current-val {
    color: var(--white);
}

.target-val {
    font-size: 2.25rem;
}

.result-highlight {
    position: relative;
    padding-top: 1rem;
}

.gain-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

/* =========================================
   TESTIMONIALS (MARQUEE)
   ========================================= */
.overflow-hidden { overflow: hidden; }

.marquee-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
}

.marquee-wrapper::before, .marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 10%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--sand), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--sand), transparent);
}

.marquee {
    display: flex;
    position: absolute;
    left: 0;
    animation: scroll 40s linear infinite; /* Slightly slower for better readability */
    width: max-content;
}

.marquee:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.3333%); } /* Scrolls exactly one third (one full set) */
}

.testimonial-card {
    width: 350px;
    margin: 0 16px; /* Symmetric margins for pixel-perfect looping */
    background: var(--white);
    flex-shrink: 0;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.author strong { display: block; color: var(--navy); }
.author span { font-size: 0.875rem; color: var(--navy-lighter); }

/* =========================================
   PRICING
   ========================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--sand-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.pricing-card.popular {
    border: 2px solid var(--navy);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.p-header {
    text-align: center;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--sand-dark);
}

.p-name {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--navy);
}

.p-price {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin: 0.5rem 0;
}

.p-price span {
    font-size: 1rem;
    color: var(--navy-lighter);
    font-weight: 500;
}

.p-desc {
    font-size: 0.95rem;
    color: var(--navy-lighter);
}

.p-features {
    list-style: none;
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.p-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    transition: opacity var(--transition-fast);
}

.p-feature--disabled {
    opacity: 0.4;
    color: var(--navy-lighter);
}

.p-features li svg { width: 20px; height: 20px; flex-shrink: 0; }

.p-btn { width: 100%; }
.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

/* =========================================
   CONTACT
   ========================================= */
.container-small { max-width: 1000px; }

.contact-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.contact-left {
    background: var(--navy);
    color: var(--white);
    padding: var(--space-lg);
}

.contact-left h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-left h2 span { color: var(--accent); }

.contact-info { margin-top: var(--space-lg); }

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-right {
    padding: var(--space-lg);
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--sand-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-group input:focus { border-color: var(--navy); }

@media (max-width: 768px) {
    .contact-box { grid-template-columns: 1fr; }
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    padding: var(--space-lg) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
}

.f-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.f-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.f-links a {
    color: #a0aec0;
    transition: color var(--transition-fast);
}

.f-links a:hover { color: var(--white); }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* Utils */
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.pt-8 { padding-top: 2rem; }
.text-sm { font-size: 0.875rem; }
.text-gray-400 { color: #cbd5e1; }
/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-popup.active {
    bottom: 24px;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.cookie-content p {
    font-size: 0.875rem;
    color: var(--navy);
    margin: 0;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

