/* Generated from legacy/faq.html by scripts/build-legacy-styles.mjs. */
/* Critical Hero Section CSS for LCP optimization */
        .faq-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/backgrounds/hero-background-desktop.webp');
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
            color: white;
            margin-top: 88px;
            text-align: center;
        }

        /* Fallback for browsers that don't support WebP */
        .no-webp .faq-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/backgrounds/hero-background-desktop.jpg');
        }

        /* Responsive hero backgrounds */
        @media (max-width: 1366px) {
            .faq-hero {
                background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/backgrounds/hero-background-tablet.webp');
            }
            .no-webp .faq-hero {
                background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/backgrounds/hero-background-tablet.jpg');
            }
        }

        @media (max-width: 768px) {
            .faq-hero {
                background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/backgrounds/hero-background-mobile.webp');
                padding: 100px 0 60px;
            }
            .no-webp .faq-hero {
                background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/backgrounds/hero-background-mobile.jpg');
            }
        }

/* Page-specific styles */

        /* Hero Section */
        .faq-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero-subtitle {
            font-size: 20px;
            opacity: 0.9;
        }

        /* FAQ Accordion Section */
        .faq-accordion {
            padding: 80px 0;
            background: var(--gray-light);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 15px;
            box-shadow: var(--shadow-light);
            overflow: hidden;
            transition: var(--transition-normal);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-medium);
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            transition: var(--transition-normal);
        }

        .faq-question:hover {
            background: var(--gray-light);
        }

        .faq-question h3 {
            color: var(--gray-dark);
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            flex: 1;
            padding-right: 20px;
        }

        .faq-icon {
            color: var(--brand-red);
            font-size: 18px;
            transition: transform var(--transition-fast);
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-content {
            padding: 0 30px 25px;
        }

        .faq-content p {
            color: var(--gray-medium);
            line-height: 1.7;
            margin: 0;
            font-size: 16px;
        }

        .faq-content strong {
            color: var(--gray-dark);
        }

        /* CTA Section */
        .faq-cta {
            padding: 80px 0;
            background: var(--brand-red);
            color: white;
            text-align: center;
        }

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

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

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

        .cta-button {
            padding: 15px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: var(--transition-normal);
        }

        .cta-button.primary {
            background: white;
            color: var(--brand-red);
        }

        .cta-button.primary:hover {
            background: var(--gray-light);
            transform: translateY(-2px);
            text-decoration: none;
        }

        .cta-button.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-button.secondary:hover {
            background: white;
            color: var(--brand-red);
            text-decoration: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .faq-hero h1 {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .faq-accordion,
            .faq-cta {
                padding: 60px 0;
            }

            .faq-cta h2 {
                font-size: 28px;
            }

            .faq-question {
                padding: 20px 20px;
            }

            .faq-question h3 {
                font-size: 16px;
                padding-right: 15px;
            }

            .faq-content {
                padding: 0 20px 20px;
            }

            .faq-content p {
                font-size: 15px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .faq-question {
                padding: 18px 15px;
            }

            .faq-question h3 {
                font-size: 15px;
                line-height: 1.4;
            }

            .faq-content {
                padding: 0 15px 18px;
            }

            .faq-icon {
                font-size: 16px;
            }
        }
