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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --success-color: #10b981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

.logo .tagline {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    white-space: nowrap;
}

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

.main-nav a.nav-login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s;
}

.main-nav a.nav-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Hero Section */
.hero-content {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.subtitle {
    font-size: 24px;
    margin-bottom: 15px;
    opacity: 0.95;
}

.description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

.play-icon {
    margin-right: 10px;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: var(--bg-light);
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    padding: 80px 20px;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.step p {
    color: var(--text-light);
}

/* Download Section */
.download {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.download h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.download p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.pricing-note {
    font-size: 14px;
    margin-top: 20px !important;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Documentation Styles */
.doc-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.doc-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.doc-page h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.doc-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.doc-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.doc-page ol, .doc-page ul {
    margin-bottom: 30px;
    padding-left: 30px;
}

.doc-page li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.doc-page code {
    background: var(--bg-light);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

/* Video Demo Section */
.video-demo {
    padding: 80px 20px;
    background: var(--bg-light);
}

.video-demo h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Screenshots Section */
.screenshots {
    padding: 80px 20px;
    background: white;
}

.screenshots h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 25px;
    padding: 15px 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.app-screenshot {
    width: 100%;
    border-radius: 20px;
    display: block;
    background: #f5f5f5;
    min-height: 500px;
    object-fit: cover;
}

/* Placeholder for missing screenshots */
.phone-mockup::before {
    content: '📱 Screenshot';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    pointer-events: none;
    z-index: 0;
}

.app-screenshot:not([src=""]) {
    position: relative;
    z-index: 1;
}

.screenshot-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.screenshot-item p {
    color: var(--text-light);
    font-size: 15px;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background: var(--bg-light);
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.faq-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Menu Overlay for Mobile */
body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Tablet - 768px and below */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 85%;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 80px 0 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav a {
        width: 100%;
        padding: 16px 30px;
        border-bottom: 1px solid var(--border-color);
        font-size: 16px;
    }
    
    .main-nav a.nav-login {
        margin: 20px 20px 0;
        width: calc(100% - 40px);
        text-align: center;
        border: none;
    }
    
    /* Hero */
    .hero-content {
        padding: 60px 20px;
    }
    
    .hero-content h2 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 20px;
    }
    
    .description {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
    
    /* Sections */
    .features, .how-it-works, .video-demo, .screenshots, .faq, .download {
        padding: 60px 20px;
    }
    
    .features h2, .how-it-works h2, .video-demo h2, .screenshots h2, .faq h2, .download h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    /* Video */
    .video-container {
        max-width: 100%;
        border-radius: 8px;
    }
    
    /* Feature Grid */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 30px;
    }
    
    /* Steps */
    .steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Screenshots */
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .phone-mockup {
        max-width: 240px;
    }
    
    .app-screenshot {
        min-height: 420px;
    }
    
    /* FAQ - CRITICAL FIX */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        padding: 24px 20px;
    }
    
    .faq-item h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .faq-item p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    /* Footer */
    footer {
        padding: 50px 20px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
    .logo {
        gap: 12px;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 22px;
    }
    
    .logo .tagline {
        font-size: 10px;
    }
    
    /* Hero */
    .hero-content {
        padding: 50px 16px;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    /* Sections */
    .features, .how-it-works, .video-demo, .screenshots, .faq, .download {
        padding: 50px 16px;
    }
    
    .features h2, .how-it-works h2, .video-demo h2, .screenshots h2, .faq h2, .download h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    /* Feature Cards */
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-card .icon {
        font-size: 42px;
        margin-bottom: 16px;
    }
    
    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 15px;
    }
    
    /* Steps */
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 26px;
        margin-bottom: 16px;
    }
    
    .step h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .step p {
        font-size: 15px;
    }
    
    /* Screenshots */
    .screenshots-grid {
        gap: 35px;
    }
    
    .phone-mockup {
        max-width: 220px;
        padding: 12px 8px;
    }
    
    .app-screenshot {
        min-height: 380px;
    }
    
    .screenshot-item h3 {
        font-size: 18px;
    }
    
    .screenshot-item p {
        font-size: 14px;
    }
    
    /* FAQ - Extra small screens */
    .faq-item {
        padding: 20px 18px;
    }
    
    .faq-item h3 {
        font-size: 16px;
    }
    
    .faq-item p {
        font-size: 14px;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 28px;
        font-size: 15px;
    }
    
    .btn-large {
        padding: 16px 36px;
        font-size: 17px;
    }
    
    /* Download */
    .download p {
        font-size: 16px;
    }
    
    .pricing-note {
        font-size: 13px;
        margin-top: 18px !important;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-section h4 {
        font-size: 17px;
        margin-bottom: 15px;
    }
    
    .footer-section a {
        font-size: 14px;
    }
}

/* =========================
   Cookie Consent + Privacy Modal
   Google Consent Mode v2
   ========================= */

/* Consent Theme Variables */
:root {
    --consent-bg: #ffffff;
    --consent-text: #1f2937;
    --consent-text-light: #6b7280;
    --consent-border: #e5e7eb;
    --consent-primary: #10b981;
    --consent-primary-hover: #059669;
    --consent-secondary: #6b7280;
    --consent-secondary-hover: #4b5563;
    --consent-overlay: rgba(0, 0, 0, 0.5);
    --consent-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (prefers-color-scheme: dark) {
    :root {
        --consent-bg: #1f2937;
        --consent-text: #f9fafb;
        --consent-text-light: #9ca3af;
        --consent-border: #374151;
        --consent-overlay: rgba(0, 0, 0, 0.7);
        --consent-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }
}

/* Consent Banner */
.consent-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--consent-bg);
    border-top: 1px solid var(--consent-border);
    box-shadow: var(--consent-shadow);
    z-index: 9999;
    transition: bottom 0.4s ease;
    padding: 20px;
}

.consent-banner.show {
    bottom: 0;
}

.consent-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.consent-banner-text {
    flex: 1;
    min-width: 300px;
}

.consent-banner-text strong {
    display: block;
    font-size: 18px;
    color: var(--consent-text);
    margin-bottom: 8px;
}

.consent-banner-text p {
    font-size: 14px;
    color: var(--consent-text-light);
    margin: 0;
    line-height: 1.5;
}

.consent-banner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Consent Buttons */
.consent-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.consent-btn-primary {
    background: var(--consent-primary);
    color: white;
    border-color: var(--consent-primary);
}

.consent-btn-primary:hover {
    background: var(--consent-primary-hover);
    border-color: var(--consent-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.consent-btn-secondary {
    background: transparent;
    color: var(--consent-secondary);
    border-color: var(--consent-border);
}

.consent-btn-secondary:hover {
    background: var(--consent-secondary);
    color: white;
    border-color: var(--consent-secondary);
}

.consent-btn-settings {
    background: transparent;
    color: var(--consent-text);
    border-color: var(--consent-border);
}

.consent-btn-settings:hover {
    background: var(--consent-bg);
    border-color: var(--consent-text-light);
}

/* Persistent Settings Button - REMOVED (using footer link instead) */

/* Consent Modal */
.consent-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.consent-modal.show {
    display: flex;
}

.consent-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--consent-overlay);
    animation: fadeIn 0.3s;
}

.consent-modal-content {
    position: relative;
    background: var(--consent-bg);
    border-radius: 16px;
    box-shadow: var(--consent-shadow);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.consent-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    border-bottom: 1px solid var(--consent-border);
}

.consent-modal-header h2 {
    font-size: 24px;
    color: var(--consent-text);
    margin: 0;
}

.consent-modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--consent-text-light);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
}

.consent-modal-close:hover {
    background: var(--consent-border);
}

.consent-modal-body {
    padding: 30px;
    overflow-y: auto;
}

.consent-modal-intro {
    font-size: 15px;
    color: var(--consent-text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.consent-option {
    margin-bottom: 24px;
}

.consent-option:last-child {
    margin-bottom: 0;
}

.consent-option-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.consent-option-info {
    flex: 1;
}

.consent-option-info strong {
    display: block;
    font-size: 16px;
    color: var(--consent-text);
    margin-bottom: 4px;
}

.consent-option-info p {
    font-size: 14px;
    color: var(--consent-text-light);
    margin: 0;
    line-height: 1.5;
}

/* Toggle Switch */
.consent-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.consent-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.consent-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.3s;
    border-radius: 26px;
}

.consent-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.consent-toggle input:checked + .consent-toggle-slider {
    background-color: var(--consent-primary);
}

.consent-toggle input:checked + .consent-toggle-slider:before {
    transform: translateX(24px);
}

.consent-toggle-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.consent-toggle-disabled .consent-toggle-slider {
    cursor: not-allowed;
    background-color: var(--consent-primary);
}

/* Modal Footer */
.consent-modal-footer {
    display: flex;
    gap: 12px;
    padding: 20px 30px;
    border-top: 1px solid var(--consent-border);
    justify-content: flex-end;
}

/* Prevent body scroll when modal is open */
body.consent-modal-open {
    overflow: hidden;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .consent-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .consent-banner-actions {
        width: 100%;
    }
    
    .consent-btn {
        flex: 1;
        text-align: center;
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .consent-modal-content {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .consent-modal-header {
        padding: 20px;
    }
    
    .consent-modal-header h2 {
        font-size: 20px;
    }
    
    .consent-modal-body {
        padding: 20px;
    }
    
    .consent-modal-footer {
        padding: 16px 20px;
        flex-wrap: wrap;
    }
    
    .consent-modal-footer .consent-btn {
        flex: 1 1 calc(50% - 6px);
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .consent-banner {
        padding: 16px;
    }
    
    .consent-banner-text strong {
        font-size: 16px;
    }
    
    .consent-banner-text p {
        font-size: 13px;
    }
    
    .consent-banner-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .consent-btn {
        width: 100%;
    }
    
    .consent-option-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .consent-modal-footer .consent-btn {
        flex: 1 1 100%;
    }
}

/* =========================
   Footer Link Button (for Cookie Settings)
   ========================= */

.footer-link-button {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 10px;
    font: inherit;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link-button:hover {
    color: white;
}

