/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #1f2937;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: #10b981;
    color: white;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.2);
}

.btn-primary:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #f3f4f6;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;           /* Aligns image and text horizontally */
    align-items: center;     /* Vertically center the image with the text */
    text-decoration: none;   /* Remove underline from link */
    color: #374151;          /* Dark gray text */
    font-weight: bold;
    font-size: 1.2rem;
}

.logo-icon {
    height: 32px;            /* Adjust height of the image */
    width: auto;             /* Maintain aspect ratio */
    margin-right: 8px;       /* Space between image and text */
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0;
}

.nav a:hover {
    color: #2563eb;
}

.nav-download {
    background-color: #2563eb !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 6px;
}

.nav-download:hover {
    background-color: #1d4ed8 !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #374151;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #374151;
    transition: all 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1f2937 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-graphic {
    position: relative;
    width: 300px;
    height: 300px;
}

.shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.shield img {
    height: 100px;   /* Adjust shield size */
    width: auto;
}

.blocked-items {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blocked-item {
    position: absolute;
    opacity: 0.6;
    animation: bounce 2s infinite;
    height: 48px;    /* Adjust blocked items size */
    width: auto;
}

/* Position each blocked item */
.blocked-item:nth-child(1) {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.blocked-item:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 0.5s;
}

.blocked-item:nth-child(3) {
    top: 40%;
    left: 10%;
    animation-delay: 1s;
}

.browser-window {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 200px;
}

.browser-bar {
    height: 12px;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
}

.browser-content {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: #10b981;
}

/* Optional: Keep bounce animation */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

/* Remove font-size since weâ€™re using images */
.step-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

/* Image inside step icon */
.step-icon img {
    width: 64px;          /* Adjust icon size as needed */
    height: 64px;
    object-fit: contain;
}

/* Step titles & description */
.step-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1f2937;       /* Dark gray */
}

.step-description {
    color: #6b7280;       /* Medium gray */
    line-height: 1.6;
}


/* Features Section */
.features {
    padding: 5rem 0;
    background: #f9fafb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Replace font-size with image sizing */
.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

/* Image inside feature icon */
.feature-icon img {
    width: 64px;       /* Adjust icon size */
    height: 64px;
    object-fit: contain;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.feature-description {
    color: #6b7280;
}


/* FAQ Section - Improved Version */
.faq {
    padding: 5rem 0;
    background: white;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    color: #2563eb;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq-question:focus {
    outline: none;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 300;
    color: #6b7280;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.faq-answer {
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    padding-bottom: 1.5rem;
}

.faq-answer-content {
    padding: 0 2rem;
    border-top: 1px solid #f3f4f6;
    padding-top: 1.5rem;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Active state styling */
.faq-item.active {
    border-color: #2563eb;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    color: #1d4ed8;
}

/* Mobile responsive improvements */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem;
        padding-top: 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding-bottom: 1.25rem;
    }
    
    .faq-toggle {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
        margin-left: 0.75rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .faq-answer-content {
        padding: 0 1.25rem;
        padding-top: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding-bottom: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* Download Section - Enhanced Version */
.download {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.download-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.download-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

/* Enhanced CTA Button */
.download .btn-primary {
    background-color: #10b981;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.2);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    text-decoration: none;
    display: inline-block;
}

.download .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.download .btn-primary:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(16, 185, 129, 0.3);
}

.download .btn-primary:hover::before {
    left: 100%;
}

.download .btn-primary:active {
    transform: translateY(-1px);
}

/* Enhanced Trust Signals */
.trust-signals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.trust-signal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    opacity: 0.95;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-signal:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Checkmark styling */
.trust-signal::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(16, 185, 129, 0.9);
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    color: white;
    margin-right: 0.25rem;
    flex-shrink: 0;
}

/* Enhanced Disclaimer */
.disclaimer {
    max-width: 650px;
    margin: 2rem auto 0;
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer strong {
    color: #fbbf24;
    font-weight: 600;
}

/* Floating elements for visual interest */
.download::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .download {
        padding: 4rem 0;
    }
    
    .download-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .download-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .download .btn-primary {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    
    .trust-signals {
        flex-direction: column;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .trust-signal {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .disclaimer {
        padding: 1.5rem;
        margin-top: 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .download {
        padding: 3rem 0;
    }
    
    .download-title {
        font-size: 2rem;
    }
    
    .download-subtitle {
        font-size: 1rem;
    }
    
    .download .btn-primary {
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
    }
    
    .disclaimer {
        padding: 1.25rem;
        font-size: 0.85rem;
    }
}

/* Footer */
.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== SUPPORT PAGE STYLES ===== */

/* Support Hero - UPDATED VERSION */
.support-hero-modern {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/* Clean background pattern without complex positioning issues */
.support-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-modern-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid #e2e8f0;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.badge-icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.badge-text {
    white-space: nowrap;
}

.hero-modern-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1f2937 0%, #2563eb 60%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-modern-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    display: block;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent 0%, #e5e7eb 20%, #e5e7eb 80%, transparent 100%);
    border-radius: 1px;
    flex-shrink: 0;
}

/* Simplified decorative elements */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: gentleFloat 8s ease-in-out infinite;
    font-size: 0.9rem;
    opacity: 0.9;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 15%;
    animation-delay: 2.5s;
}

.card-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 5s;
}

.card-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.card-text {
    font-weight: 600;
    color: #374151;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Gentler animation */
@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.9;
    }
    33% {
        transform: translateY(-6px) rotate(1deg);
        opacity: 1;
    }
    66% {
        transform: translateY(-3px) rotate(-1deg);
        opacity: 0.95;
    }
}

/* OLD SUPPORT HERO BACKUP - Remove if not needed */
.support-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.single-column {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.support-hero .hero-title {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

/* Support Categories */
.support-categories {
    padding: 4rem 0;
    background: #f9fafb;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.support-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #10b981);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

/* Updated for image icons */
.support-icon-img {
    width: 48px;          /* Adjust size to match previous emoji visual weight */
    height: 48px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.support-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.support-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.support-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.support-link:hover {
    color: #1d4ed8;
}

.support-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.support-link:hover::after {
    transform: translateX(3px);
}


/* Installation Guide - Enhanced Version */
.installation-guide {
    padding: 5rem 0;
    background: #f9fafb;
    position: relative;
}

.guide-steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guide-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle gradient border on top */
.guide-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #10b981);
}

.guide-step:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 25px -5px rgba(37, 99, 235, 0.1);
    transform: translateY(-3px);
}

.step-number {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 
        0 8px 16px rgba(37, 99, 235, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.guide-step:hover .step-number {
    transform: scale(1.05);
    box-shadow: 
        0 12px 24px rgba(37, 99, 235, 0.4),
        0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Subtle shine effect on step number */
.step-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 16px;
    transition: left 0.6s ease;
}

.guide-step:hover .step-number::before {
    left: 100%;
}

.step-content {
    flex: 1;
    min-width: 0;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: #1f2937;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.step-content p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

/* Enhanced button in step 1 */
.step-content .btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.step-content .btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* Add connecting line between steps */
.guide-step:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 30px;
    width: 2px;
    height: 2rem;
    background: linear-gradient(to bottom, #e5e7eb, transparent);
    z-index: 1;
}

/* Progressive enhancement for larger screens */
@media (min-width: 1024px) {
    .guide-step {
        padding: 3rem;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .installation-guide {
        padding: 4rem 0;
    }
    
    .guide-step {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin: 0 auto;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .step-content p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .guide-step:not(:last-child)::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .guide-step {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    .step-content .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
}

/* Troubleshooting Section - Enhanced Version to match FAQ styling */
.troubleshooting {
    padding: 5rem 0;
    background: white;
}

.troubleshooting .faq-items {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.troubleshooting .faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.troubleshooting .faq-item:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.troubleshooting .faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.troubleshooting .faq-question:hover {
    color: #2563eb;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.troubleshooting .faq-question:focus {
    outline: none;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.troubleshooting .faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 300;
    color: #6b7280;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 1rem;
}

.troubleshooting .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.troubleshooting .faq-answer {
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    opacity: 0;
}

.troubleshooting .faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    padding-bottom: 1.5rem;
}

.troubleshooting .faq-answer-content {
    padding: 0 2rem;
    border-top: 1px solid #f3f4f6;
    padding-top: 1.5rem;
}

.troubleshooting .faq-answer p {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Active state styling */
.troubleshooting .faq-item.active {
    border-color: #2563eb;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
}

.troubleshooting .faq-item.active .faq-question {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    color: #1d4ed8;
}

/* Mobile responsive improvements */
@media (max-width: 768px) {
    .troubleshooting .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .troubleshooting .faq-answer-content {
        padding: 0 1.5rem;
        padding-top: 1.25rem;
    }
    
    .troubleshooting .faq-item.active .faq-answer {
        padding-bottom: 1.25rem;
    }
    
    .troubleshooting .faq-toggle {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
        margin-left: 0.75rem;
    }
}

@media (max-width: 480px) {
    .troubleshooting .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .troubleshooting .faq-answer-content {
        padding: 0 1.25rem;
        padding-top: 1rem;
    }
    
    .troubleshooting .faq-item.active .faq-answer {
        padding-bottom: 1rem;
    }
    
    .troubleshooting .faq-answer p {
        font-size: 0.9rem;
    }
}

/* Enhanced FAQ Items */
.faq-item {
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #f3f4f6;
}

.faq-item:hover {
    border-color: #e5e7eb;
}

.faq-question {
    background: #fafbfc;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

/* Report Site */
.report-site {
    padding: 4rem 0;
    background: white;
}

.report-content {
    max-width: 600px;
    margin: 0 auto;
}

.report-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Forms */
.report-form,
.contact-form {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-info > p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.contact-icon {
    width: 40px;      /* icon size */
    height: 40px;
    flex-shrink: 0;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-method h4 {
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.contact-method p {
    color: #6b7280;
    margin: 0;
}


/* Crisis Resources */
.crisis-resources {
    padding: 3rem 0;
    background: #fef2f2;
    border-top: 3px solid #ef4444;
}

.crisis-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.crisis-content h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.crisis-content p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.crisis-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.crisis-link {
    display: flex; /* changed from inline-flex for better responsiveness */
    align-items: center;
    gap: 0.75rem;
    background: #dc2626;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.crisis-link:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.3);
}

.crisis-link img.crisis-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}



/* ===== LEGAL PAGES STYLES ===== */
/* Legal Content Layout */
.legal-content {
    padding: 6rem 0 4rem;
    background: #ffffff;
    min-height: 100vh;
}
.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}
.legal-header h1 {
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 1rem;
}
.last-updated {
    color: #6b7280;
    font-size: 1.1rem;
    font-style: italic;
}
.legal-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}
/* Legal Sections */
.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f3f4f6;
}
.legal-section:last-child {
    border-bottom: none;
}
.legal-section h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #dbeafe;
}
.legal-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1f2937;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}
/* Icon Styles */
.legal-section img.icon,
.warning-icon,
.help-icon,
.legal-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}
/* Special sizing for SOS icon if you want it larger */
.legal-icon {
    width: 32px;
    height: 32px;
}
/* Paragraphs and Lists */
.legal-section p {
    color: #374151;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}
.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}
.legal-section li {
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}
.legal-section li strong {
    color: #1f2937;
}
/* Responsive for Mobile */
@media (max-width: 768px) {
    .legal-section h2,
    .legal-section h3 {
        font-size: 1.3rem;
        gap: 0.4rem;
    }
    .legal-section img.icon,
    .warning-icon,
    .help-icon,
    .legal-icon {
        width: 24px;
        height: 24px;
    }
    /* SOS icon slightly larger on mobile too */
    .legal-icon {
        width: 26px;
        height: 26px;
    }
}
@media (max-width: 480px) {
    .legal-section h2,
    .legal-section h3 {
        font-size: 1.1rem;
        gap: 0.3rem;
    }
    .legal-section img.icon,
    .warning-icon,
    .help-icon,
    .legal-icon {
        width: 20px;
        height: 20px;
    }
    /* SOS icon sizing for small screens */
    .legal-icon {
        width: 22px;
        height: 22px;
    }
}


/* Special Boxes */
.highlight {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    border: 2px solid #2563eb;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.highlight h2 {
    color: #1d4ed8;
    border-bottom: 2px solid #1d4ed8;
}

.warning-box {
    background: #fef2f2;
    border: 2px solid #f87171;
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
}

.warning-box h3 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.warning-box p {
    color: #7f1d1d;
    margin-bottom: 1rem;
}

.warning-box ul {
    margin: 1rem 0;
}

.warning-box li {
    color: #7f1d1d;
}

.warning-box strong {
    color: #dc2626;
}

/* Links in Legal Content */
.legal-section a {
    color: #2563eb;
    text-decoration: underline;
    transition: color 0.3s;
}

.legal-section a:hover {
    color: #1d4ed8;
}

/* ===== SUPPORT PAGE IMPROVEMENTS ===== */
/* Section Dividers */
.support-categories::after,
.installation-guide::after,
.troubleshooting::after,
.report-site::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #10b981);
    margin: 0 auto;
    border-radius: 2px;
}

/* Better Section Titles */
.section-title {
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #10b981);
    border-radius: 2px;
}

/* Better Buttons */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Loading State for Forms */
.form-loading {
    opacity: 0.7;
    pointer-events: none;
}

.form-loading .btn {
    position: relative;
}

.form-loading .btn::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success/Error Messages */
.form-message {
    border-radius: 8px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Missing Support Page Styles */
.support-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.support-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.support-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #dbeafe;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid #bfdbfe;
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.info-text h3 {
    margin-bottom: 0.5rem;
    color: #1e40af;
    font-size: 1.2rem;
}

.info-text p {
    color: #1e3a8a;
    margin: 0;
    line-height: 1.6;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* ===== DESKTOP RESPONSIVE IMPROVEMENTS ===== */
/* Desktop Responsive (Large screens) */
@media (min-width: 1200px) {
    .support-hero-modern {
        padding: 9rem 0 6rem;
        min-height: 75vh;
    }
    
    .hero-modern-title {
        font-size: 4rem;
    }
    
    .hero-modern-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-stats {
        gap: 4rem;
    }
    
    .floating-card {
        transform: scale(1.1);
    }
    
    .card-1 {
        left: 12%;
    }
    
    .card-2 {
        right: 12%;
    }
    
    .card-3 {
        left: 12%;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .support-hero-modern {
        padding: 6rem 0 4rem;
        min-height: 60vh;
    }
    
    .hero-modern-title {
        font-size: 3rem;
    }
    
    .floating-card {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .card-icon-img {
        width: 20px;
        height: 20px;
    }
}

/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .shield-graphic {
        width: 250px;
        height: 250px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .trust-signals {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Support Page Mobile */
    .support-hero-modern {
        padding: 5rem 0 3rem;
        min-height: 50vh;
    }
    
    .hero-modern-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-modern-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
        margin-top: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .badge-icon-img {
        width: 16px;
        height: 16px;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .guide-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .crisis-links {
        gap: 0.5rem;
    }

    .crisis-link {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

    /* Legal Pages Mobile */
    .legal-content {
        padding: 5rem 0 3rem;
    }

    .legal-header h1 {
        font-size: 2.5rem;
    }

    .legal-body {
        padding: 0 1rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }

    .legal-section p,
    .legal-section li {
        font-size: 1rem;
    }

    .highlight,
    .warning-box {
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .warning-box h3 {
        font-size: 1.1rem;
    }

    .support-card {
        margin-bottom: 1.5rem;
    }
    
    .guide-step {
        margin-bottom: 2rem;
    }
    
    .contact-method {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 6rem 0 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }

    /* Support Page Mobile */
    .support-hero-modern {
        padding: 4rem 0 2rem;
        min-height: 45vh;
    }
    
    .hero-modern-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-modern-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .badge-icon-img {
        width: 14px;
        height: 14px;
    }

    .report-form,
    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Legal Pages Mobile */
    .legal-header h1 {
        font-size: 2rem;
    }

    .legal-section {
        margin-bottom: 2rem;
    }

    .legal-section ul {
        padding-left: 1.5rem;
    }

    .highlight,
    .warning-box {
        padding: 1rem;
    }
}

/* Focus Improvements for Accessibility */
.support-card:focus-within,
.faq-item:focus-within,
.contact-method:focus-within {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Better Print Styles for Support Page */
@media print {
    .support-hero,
    .crisis-resources {
        background: none !important;
        color: black !important;
    }
    
    .support-card,
    .guide-step,
    .contact-method {
        break-inside: avoid;
        border: 1px solid #000;
        margin-bottom: 1rem;
    }
}