/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: var(--bg-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Consistent design system */
:root {
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;

    /* Background colors */
    --bg-light: #f8fafc;
    --bg-white: white;
    --bg-gradient-brand: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bg-dark: #2d3748;
}

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

/* Hero Section */
.hero {
    background: var(--bg-gradient-brand);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><path d="M0,50 Q250,0 500,50 T1000,50 L1000,100 L0,100 Z"/></svg>') repeat-x;
    background-size: 1000px 100px;
    background-position: bottom;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.extension-icon {
    margin-bottom: 40px;
    display: inline-block;
    position: relative;
}

.extension-icon img {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    padding: 12px 14px;
    background: white;
}

.extension-icon:hover img {
    transform: scale(1.05);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    text-align: center;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.primary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button.primary:active {
    transform: translateY(0);
}

.cta-button.secondary {
    background: white;
    color: #667eea;
    border-color: white;
}

.cta-button.secondary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary:active {
    transform: translateY(0);
}

.cta-button:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Mobile Warning */
.mobile-warning {
    display: none;
    background: rgba(255, 193, 7, 0.15);
    color: #fff;
    padding: 20px 24px;
    border-radius: 12px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.mobile-warning p {
    margin: 0;
    font-weight: 500;
    font-size: 1rem;
}

/* Mobile warning outside hero section */
.support-content .mobile-warning,
.privacy-content .mobile-warning,
body > .container > .mobile-warning:not(.hero .mobile-warning) {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
    margin: 0 auto 40px auto;
    max-width: 800px;
    backdrop-filter: none;
}

/* Features Section - Redesigned */
.features {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.features-hero {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.features-hero h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2d3748 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-subtitle {
    font-size: 1.3rem;
    color: #718096;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

.features-showcase {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Feature Highlight */
.feature-highlight {
    display: flex;
    align-items: center;
    gap: 60px;
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.feature-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.volume-meter {
    display: flex;
    gap: 8px;
    align-items: end;
    height: 80px;
}

.meter-bar {
    width: 12px;
    background: #e2e8f0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.meter-bar:nth-child(1) { height: 20px; }
.meter-bar:nth-child(2) { height: 35px; }
.meter-bar:nth-child(3) { height: 50px; }
.meter-bar:nth-child(4) { height: 65px; }
.meter-bar:nth-child(5) { height: 80px; }
.meter-bar:nth-child(6) { height: 75px; }

.meter-bar.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    animation: volumePulse 2s ease-in-out infinite;
}

.volume-label {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    text-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.feature-content h3 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-content p {
    font-size: 1.2rem;
    color: #718096;
    line-height: 1.7;
}

/* Feature Split */
.feature-split {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card.compact {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex: 1;
    position: relative;
    overflow: hidden;
}

.feature-card.compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bg-gradient-brand);
}

.feature-card.compact:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-card.compact .feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card.compact h3 {
    color: #2d3748;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-card.compact p {
    color: #718096;
    line-height: 1.6;
    font-size: 1rem;
}

/* Feature Banner */
.feature-banner {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="white" opacity="0.1"><circle cx="20" cy="20" r="2"/><circle cx="80" cy="80" r="3"/><circle cx="40" cy="70" r="1"/><circle cx="70" cy="30" r="2"/></svg>') repeat;
    animation: float 6s ease-in-out infinite;
}

.banner-icon {
    font-size: 4rem;
    opacity: 0.9;
}

.banner-content {
    flex: 1;
}

.banner-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.banner-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

@keyframes volumePulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}


@keyframes float {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(10px) translateY(-10px); }
}



/* How it works section - Redesigned */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-light);
    position: relative;
}

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

.workflow-header {
    text-align: center;
    margin-bottom: 80px;
}

.workflow-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 20px;
}

.workflow-header p {
    font-size: 1.3rem;
    color: #718096;
    font-weight: 300;
}

.workflow-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.step-visual {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid #e2e8f0;
}

.step-visual:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

/* Browser mockup */
.browser-mockup {
    width: 60px;
    height: 45px;
    background: white;
    border-radius: 6px;
    border: 2px solid #e2e8f0;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.browser-bar {
    height: 12px;
    background: #f7fafc;
    border-radius: 4px 4px 0 0;
    border-bottom: 1px solid #e2e8f0;
}

.extension-icon-mini {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Website mockup */
.website-mockup {
    width: 70px;
    height: 50px;
    background: white;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.video-placeholder {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: #2d3748;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    color: white;
    font-size: 16px;
}

/* Popup mockup */
.popup-mockup {
    width: 60px;
    height: 40px;
    background: white;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-control {
    height: 100%;
    display: flex;
    align-items: center;
}

.slider-track {
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    position: relative;
}

.slider-thumb {
    position: absolute;
    right: 8px;
    width: 12px;
    height: 12px;
    background: #667eea;
    border-radius: 50%;
    top: -4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Audio waves */
.audio-waves {
    display: flex;
    gap: 4px;
    align-items: end;
    height: 40px;
}

.wave {
    width: 6px;
    background: #667eea;
    border-radius: 3px;
    animation: wave 1.5s ease-in-out infinite;
}

.wave:nth-child(1) { height: 15px; animation-delay: 0s; }
.wave:nth-child(2) { height: 30px; animation-delay: 0.2s; }
.wave:nth-child(3) { height: 40px; animation-delay: 0.4s; }
.wave:nth-child(4) { height: 25px; animation-delay: 0.6s; }

.step-content {
    margin-top: 10px;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 1rem;
    color: #718096;
    line-height: 1.6;
}

.workflow-arrow {
    font-size: 2rem;
    color: #667eea;
    font-weight: bold;
    opacity: 0.6;
    margin: 0 10px;
}

@keyframes wave {
    0%, 100% { transform: scaleY(0.5); opacity: 0.7; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* Testimonials Section - Redesigned */
.testimonials {
    background: var(--bg-light);
    padding: 120px 0;
}

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

.testimonials h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #2d3748 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-highlight {
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.03) 0%, transparent 50%);
    opacity: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.quote-large {
    font-size: 1.4rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: italic;
    position: relative;
}

.quote-large::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 6rem;
    color: #667eea;
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 5px;
}

.author-title {
    font-size: 1rem;
    color: #667eea;
    font-weight: 500;
}

/* Mini Testimonials */
.testimonial-mini-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.mini-testimonial {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex: 1;
    max-width: 350px;
    position: relative;
    text-align: left;
}

.mini-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px 16px 0 0;
}

.mini-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.mini-quote {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.mini-author {
    color: #667eea;
    font-weight: 600;
    font-size: 0.95rem;
}


/* CTA Section */
.cta-section {
    background: var(--bg-gradient-brand);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.05"><path d="M0,50 Q250,100 500,50 T1000,50 L1000,0 L0,0 Z"/></svg>') repeat-x;
    background-size: 1000px 100px;
    background-position: top;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button.large {
    padding: 24px 48px;
    font-size: 1.2rem;
    font-weight: 700;
}

.guarantee {
    margin-top: 30px !important;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: #a0aec0;
    text-align: center;
    padding: 60px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-content p {
    margin: 0;
    font-size: 1rem;
}

.footer-content a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.footer-content a:hover {
    color: #764ba2;
}

.footer-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.footer-links a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.2);
}

/* Responsive design */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons {
        display: none;
    }

    .mobile-warning {
        display: block;
    }

    .cta-button.primary.large {
        display: none;
    }

    /* Features responsive */
    .features {
        padding: 80px 0;
    }

    .features-hero h2 {
        font-size: 2.5rem;
    }

    .features-subtitle {
        font-size: 1.1rem;
    }

    .feature-highlight {
        flex-direction: column;
        padding: 40px 30px;
        gap: 40px;
        text-align: center;
    }

    .feature-split {
        flex-direction: column;
        gap: 30px;
    }

    .feature-banner {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
        gap: 30px;
    }

    .banner-icon {
        font-size: 3rem;
    }

    /* Workflow responsive */
    .how-it-works {
        padding: 80px 0;
    }

    .workflow-header h2 {
        font-size: 2.5rem;
    }

    .workflow-visual {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .workflow-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
        margin: 0;
    }

    .workflow-step {
        max-width: 300px;
    }

    /* Testimonials responsive */
    .testimonials {
        padding: 80px 0;
    }

    .testimonials h2 {
        font-size: 2.5rem;
    }

    .testimonial-highlight {
        padding: 40px 30px;
    }

    .quote-large {
        font-size: 1.2rem;
    }

    .testimonial-mini-grid {
        flex-direction: column;
        gap: 20px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .extension-icon img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .features h2,
    .how-it-works h2,
    .testimonials h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

/* Support and Privacy page button fixes */
.features .cta-button.primary,
.privacy-content .cta-button.primary {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.features .cta-button.primary:hover,
.privacy-content .cta-button.primary:hover {
    background: #5a67d8;
    border-color: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Privacy page specific styles */
.privacy-content {
    background: white;
    padding: 80px 0;
}

.privacy-section {
    max-width: 800px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.privacy-section h2 {
    color: #2d3748;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
}

.privacy-section h3 {
    color: #4a5568;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 30px 0 20px 0;
}

.privacy-section p {
    color: #718096;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.privacy-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-section li {
    color: #718096;
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.privacy-section ol {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-section ol li {
    color: #718096;
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.last-updated {
    font-size: 1.1rem;
    opacity: 0.8;
    font-style: italic;
    margin-top: 10px;
}

.contact-info {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    margin: 30px 0;
}

.contact-info p {
    margin-bottom: 10px;
    color: #4a5568;
}

.contact-info a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.privacy-summary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    margin: 40px 0;
}

.privacy-summary h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.privacy-highlights {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.privacy-highlights li {
    color: white;
    font-weight: 500;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Support page specific styles */
.support-content {
    background: white;
    padding: 80px 0;
}

.support-section {
    max-width: 800px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.support-section h2 {
    color: #2d3748;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
}

.support-section h3 {
    color: #4a5568;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 30px 0 20px 0;
}

.support-section p {
    color: #718096;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-method {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1);
}

.contact-method h3 {
    color: #2d3748;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-method p {
    color: #718096;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.email-link, .website-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    display: inline-block;
    transition: all 0.2s ease;
}

.email-link:hover, .website-link:hover {
    color: white;
    background: #667eea;
    text-decoration: none;
}

.faq {
    background: white;
    padding: 60px 0;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.faq-item h3 {
    color: #2d3748;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item p {
    color: #718096;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .support-section {
        padding: 0 20px;
    }

    .support-section h2 {
        font-size: 1.8rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-method {
        padding: 20px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 0 20px;
    }

    .privacy-section h2 {
        font-size: 1.8rem;
    }

    .privacy-highlights {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 20px;
    }
}
