:root {
    /* Colors */
    --color-primary: #025048;
    --color-primary-dark: #013a35;
    --color-accent: #FDA256;
    --color-accent-hover: #e58e45;
    --color-text: #424b4a;
    --color-text-light: #757575;
    --color-text-white: #ffffff;
    --color-bg-light: #f1f4f1;
    --color-bg-white: #ffffff;
    --color-bg-dark: #2c3e50;
    --color-white: #ffffff;
    --color-border: #e2e8f0;
    --color-star: #FDA256;

    /* Fonts */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Manrope', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --section-padding: 5rem 1.5rem;
    --header-height: 80px;
    --border-radius: 8px;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    background-color: var(--color-bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1.5rem; }

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.text-white { color: var(--color-white); }
.text-accent { color: var(--color-accent); }
.bg-primary { background-color: var(--color-primary); }
.bg-light { background-color: var(--color-bg-light); }
.bg-white { background-color: var(--color-bg-white); }
.bg-dark { background-color: var(--color-bg-dark); }

.section-label {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    display: block;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-text); /* Usually dark text on orange is readable */
    border-color: var(--color-accent);
}

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

.btn-outline-white {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

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

.btn-outline-dark {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

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

/* Header */
.site-header {
    height: var(--header-height);
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.site-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.site-nav ul {
    display: flex;
    gap: 2rem;
}

.site-nav a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--color-text);
}

.site-nav a:hover {
    color: var(--color-primary);
}

.header-actions {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
}

/* Section 1: Hero */
.hero {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 6rem 0;
    overflow: hidden; /* For overlapping images */
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content .section-label {
    color: rgba(255, 255, 255, 0.8);
}

.hero-content h1 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.hero-content .subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-item span {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
    font-family: var(--font-body);
}

.hero-images {
    position: relative;
    height: 500px;
}

.hero-img-business {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 85%;
    object-fit: cover;
    z-index: 1;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-img-freedom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 60%;
    object-fit: cover;
    z-index: 2;
    border-radius: var(--border-radius);
    border: 8px solid var(--color-primary); /* Blend with bg */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.img-label {
    position: absolute;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
    bottom: 10px;
    left: 10px;
    backdrop-filter: blur(4px);
}

/* Section 2: O Nás */
.about {
    padding: var(--section-padding);
    background-color: var(--color-bg-white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content .section-label {
    color: var(--color-text-light);
}

.about-grid-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
}

.about-grid-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.about-img-main,
.about-img-symbolic,
.about-img-sub1,
.about-img-sub2 {
    grid-column: auto;
    grid-row: auto;
}

/* Section 3: Nabídka */
.offer {
    padding: var(--section-padding);
    background-color: var(--color-bg-light);
}

.offer-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.offer-header .section-label {
    color: var(--color-text-light);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.offer-card {
    position: relative;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    group: hover;
}

.offer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-card:hover img {
    transform: scale(1.05);
}

.offer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--color-white);
}

.offer-overlay h3 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

/* Section 4: Progressivo */
.experience {
    padding: var(--section-padding);
    background-color: var(--color-bg-dark);
    color: var(--color-white);
}

.experience-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.experience-content h2 {
    color: var(--color-white);
}

.experience-content .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.experience-content p {
    color: rgba(255, 255, 255, 0.9);
}

.experience-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Section 5: Reference */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--color-bg-white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--color-star);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    flex-grow: 1;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1rem;
}

.testimonial-author .role {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Section 6: CTA */
.cta-section {
    background-color: var(--color-primary);
    padding: 6rem 1.5rem;
    text-align: center;
    color: var(--color-white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 2.5rem;
}

/* Footer */
.site-footer {
    padding: 3rem 0;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-nav ul {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: var(--color-text);
    font-size: 0.9rem;
}

.footer-copyright {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {
    :root {
        --section-padding: 4rem 1.5rem;
    }

    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.25rem; }

    .hero-container,
    .about-container,
    .experience-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-images {
        order: 2;
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .trust-indicators {
        justify-content: center;
    }

    .about-grid-images {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .experience-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .site-nav, .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Mobile Menu Open State */
    .site-header.mobile-open .site-nav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        padding: 2rem 0;
        border-top: 1px solid var(--color-border);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .site-header.mobile-open .site-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .site-header.mobile-open .header-actions {
        display: flex;
        justify-content: center;
        width: 100%;
        position: absolute;
        top: calc(100% + 300px); /* Approximate height of nav stack */
        background-color: var(--color-white);
        padding-bottom: 2rem;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    h1 { font-size: 2.25rem; }

    .hero-images {
        height: 300px;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ========================================
   DESIGN POLISH – CSS REFINEMENTS
   ======================================== */

/* --- GLOBAL IMPROVEMENTS --- */

/* More breathing space for all sections */
section {
    padding: 8rem 0 !important; /* Increased from 4-6rem */
}

/* Better container max-width */
.container {
    max-width: 1280px; /* Slightly wider */
}

/* Smoother transitions everywhere */
* {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- HERO SECTION POLISH --- */

.hero-modern {
    padding: 10rem 0 !important; /* Extra space for impact */
    min-height: 90vh;
}

/* Bigger, bolder hero title */
.hero-title {
    font-size: 4.5rem !important; /* Increased from 3.5rem */
    line-height: 1.05 !important;
    margin-bottom: 2rem !important;
    letter-spacing: -0.02em; /* Tighter for modern look */
}

/* Better subtitle readability */
.hero-subtitle {
    font-size: 1.25rem !important; /* Increased from 1.1rem */
    line-height: 1.7 !important;
    max-width: 550px !important;
    margin-bottom: 3rem !important;
    opacity: 0.95 !important;
}

/* Larger, more prominent CTAs */
.hero-actions .btn {
    padding: 16px 40px !important; /* Increased from 14px 32px */
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Better hover effect for primary button */
.hero-modern .btn-primary:hover {
    background-color: #ff8c42 !important; /* Lighter orange on hover */
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(253, 162, 86, 0.4);
}

/* Better outline button */
.hero-modern .btn-outline:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.6) !important;
    transform: translateY(-2px);
}

/* Trust indicators more prominent */
.hero-trust {
    margin-top: 4rem !important;
    padding-top: 2rem !important;
}

.trust-item strong {
    font-size: 1.5rem !important; /* Bigger numbers */
    font-weight: 700 !important;
}

/* --- HERO IMAGES IMPROVEMENTS --- */

/* More dramatic overlap and shadows */
.image-card {
    box-shadow: 0 25px 50px rgba(0,0,0,0.4) !important; /* Stronger shadow */
    border-radius: 16px !important; /* More rounded */
}

.image-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5) !important;
}

/* Business card adjustments */
.image-card.business {
    width: 380px !important; /* Slightly larger */
    height: 500px !important;
}

/* Freedom card adjustments */
.image-card.freedom {
    width: 320px !important;
    height: 420px !important;
    border: 5px solid var(--hero-bg) !important; /* Thicker border */
}

/* Better image labels */
.img-tag {
    padding: 10px 20px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
    backdrop-filter: blur(10px) !important;
}

/* --- O NÁS SECTION --- */

.about {
    padding: 10rem 0 !important; /* Extra space */
}

.about h2 {
    font-size: 3rem !important; /* Bigger heading */
    margin-bottom: 1.5rem !important;
}

.about h3 {
    font-size: 1.5rem !important;
    line-height: 1.4 !important;
    color: var(--color-text) !important; /* Not as dark as h2 */
    font-weight: 600 !important;
}

.about p {
    font-size: 1.15rem !important;
    line-height: 1.8 !important;
    margin-bottom: 2rem !important;
}

/* About images with more space */
.about-images img {
    border-radius: 16px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
    margin-bottom: 2rem !important;
}

.about-images img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2) !important;
}

/* --- E-BOOKY SECTION --- */

.features {
    padding: 10rem 0 !important;
}

.features h2 {
    font-size: 3rem !important;
    margin-bottom: 1.5rem !important;
}

/* Larger, more impactful cards */
.feature-card {
    min-height: 450px !important; /* Taller cards */
    padding: 3rem !important;
    border-radius: 16px !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    overflow: hidden;
}

/* Dark overlay for readability */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 1;
}

.feature-card h3 {
    position: relative;
    z-index: 2;
    color: white !important;
    font-size: 2rem !important;
    margin-top: auto; /* Push to bottom */
}

.feature-card:hover {
    transform: translateY(-10px) !important;
}

/* --- PANAMA SECTION (if using overlay) --- */

.exclusive, .latest {
    padding: 12rem 0 !important; /* Extra dramatic space */
}

.exclusive h2, .latest h2 {
    font-size: 3.5rem !important;
    line-height: 1.2 !important;
}

/* --- TESTIMONIALS --- */

.testimonials {
    padding: 10rem 0 !important;
}

.testimonial-card {
    padding: 3rem !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
    transform: translateY(-5px);
}

.stars {
    font-size: 1.5rem !important;
}

/* --- FOOTER CTA --- */

.footer-cta {
    padding: 10rem 0 !important;
}

.cta-title {
    font-size: 3.5rem !important;
    line-height: 1.2 !important;
}

/* --- RESPONSIVE ADJUSTMENTS --- */

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem !important;
    }

    section {
        padding: 5rem 0 !important;
    }

    .image-card.business {
        width: 300px !important;
        height: 400px !important;
    }

    .image-card.freedom {
        width: 250px !important;
        height: 350px !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* ======================================== */
/* =============================================
   MODERN UX FEATURES - Added 2025
   ============================================= */

/* ===== DARK MODE VARIABLES ===== */
:root {
    --color-primary: #025048;
    --color-accent: #FDA256;
    --bg-main: #FFFFFF;
    --bg-card: #F9FAFB;
    --bg-section-alt: #f1f4f1;
    --text-main: #424b4a;
    --text-muted: #6B7280;
    --border-color: #E5E7EB;
}

[data-theme="dark"] {
    --color-primary: #03a89e;
    --color-accent: #ffb87a;
    --bg-main: #1a1a1a;
    --bg-card: #2d2d2d;
    --bg-section-alt: #252525;
    --text-main: #e0e0e0;
    --text-muted: #9ca3af;
    --border-color: #374151;
}

/* Apply variables to body */
body {
    background-color: var(--bg-main);
    color: var(--text-main);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Dark mode image adjustment */
[data-theme="dark"] img {
    filter: brightness(0.9);
}

[data-theme="dark"] .hero {
    background-color: #0a2e2a;
}

[data-theme="dark"] .about,
[data-theme="dark"] .testimonials {
    background-color: var(--bg-main);
}

[data-theme="dark"] .offer,
[data-theme="dark"] .cta-section {
    background-color: var(--bg-section-alt);
}

[data-theme="dark"] .experience {
    background-color: #03403a;
}

[data-theme="dark"] .testimonial-card {
    background-color: var(--bg-card);
    border-color: var(--border-color);
}

[data-theme="dark"] .site-header {
    background-color: rgba(26, 26, 26, 0.95);
}

[data-theme="dark"] .site-footer {
    background-color: #111;
}

/* ===== THEME TOGGLE BUTTON ===== */
.theme-toggle {
    background: transparent;
    border: 2px solid currentColor;
    color: inherit;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.theme-toggle i {
    font-size: 1.1rem;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float i {
    font-size: 32px;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* WhatsApp Mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float i {
        font-size: 28px;
    }
}

/* ===== FADE-IN ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #424b4a;
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    gap: 2rem;
}

.cookie-content {
    flex: 1;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #FDA256;
    text-decoration: underline;
}

.cookie-content a:hover {
    color: #ffb87a;
}

.cookie-actions {
    flex-shrink: 0;
}

.cookie-actions button {
    white-space: nowrap;
    min-width: 120px;
}

/* Cookie Banner Mobile */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions button {
        width: 100%;
    }
}

/* ===== HEADER ACTIONS RESPONSIVE FIX ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 992px) {
    .theme-toggle {
        margin-right: 0.5rem;
    }
}

@media (max-width: 768px) {
    .header-actions .btn {
        display: none;
    }

    .theme-toggle {
        margin-right: 1rem;
    }
}
