    /* FAQ Page Styling */
    .faq-hero {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 80px 0;
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        overflow: hidden;
    }

    .faq-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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
        background-size: cover;
    }

    .faq-hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: 3.5rem;
        margin-bottom: 20px;
        font-weight: 700;
        position: relative;
        z-index: 1;
    }

    .faq-hero p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.9;
        position: relative;
        z-index: 1;
    }

    .faq-hero .hero-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 0.9rem;
        margin-top: 20px;
        backdrop-filter: blur(10px);
        position: relative;
        z-index: 1;
    }

    .faq-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Stats Banner */
    .stats-banner {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        border-radius: 15px;
        padding: 40px;
        margin: -30px auto 60px;
        color: white;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 2;
        max-width: 1000px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 2.5rem;
        margin-bottom: 5px;
        font-weight: 700;
    }

    .stat-item p {
        opacity: 0.9;
        font-size: 1rem;
    }

    /* Search Bar */
    .faq-search {
        margin-bottom: 50px;
        position: relative;
    }

    .faq-search input {
        width: 100%;
        padding: 18px 25px 18px 50px;
        border: 2px solid #e1e5e9;
        border-radius: 10px;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        background: #f8f9fa;
    }

    .faq-search input:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
    }

    .faq-search i {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #667eea;
        font-size: 1.2rem;
    }

    /* FAQ Categories */
    .faq-categories {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 40px;
        justify-content: center;
    }

    .category-btn {
        padding: 12px 25px;
        background: #f8f9fa;
        border: 2px solid #e1e5e9;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 500;
        color: #5c5c5c;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .category-btn i {
        font-size: 1rem;
    }

    .category-btn:hover,
    .category-btn.active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-color: transparent;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
    }

    /* FAQ Items */
    .faq-section {
        margin-bottom: 70px;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .faq-category-title {
        font-family: 'Playfair Display', serif;
        font-size: 2.2rem;
        color: #2a2a2a;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 2px solid #f0f2f5;
        position: relative;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .faq-category-title i {
        color: #667eea;
        font-size: 1.8rem;
    }

    .faq-category-title:after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100px;
        height: 2px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .faq-item {
        background: white;
        border-radius: 10px;
        margin-bottom: 15px;
        border: 1px solid #f0f2f5;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border-color: #e1e5e9;
    }

    .faq-question {
        padding: 25px 30px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #f8f9fa;
        border: none;
        width: 100%;
        text-align: left;
        font-size: 1.2rem;
        font-weight: 600;
        color: #2a2a2a;
        transition: all 0.3s ease;
    }

    .faq-question:hover {
        background: #f1f3f5;
    }

    .faq-question.active {
        color: #667eea;
        background: #f8f9fa;
    }

    .faq-question .question-icon {
        width: 30px;
        height: 30px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.9rem;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .faq-question .toggle-icon {
        color: #667eea;
        transition: transform 0.3s ease;
        font-size: 1.2rem;
        margin-left: 15px;
        flex-shrink: 0;
    }

    .faq-question.active .toggle-icon {
        transform: rotate(180deg);
    }

    .faq-question-content {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .faq-answer {
        padding: 0 30px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        background: white;
    }

    .faq-answer.show {
        padding: 25px 30px;
        max-height: 500px;
    }

    .faq-answer p {
        color: #5c5c5c;
        line-height: 1.8;
        margin-bottom: 0;
    }

    .faq-answer ul {
        list-style: none;
        padding-left: 0;
        margin-top: 15px;
    }

    .faq-answer li {
        padding: 8px 0;
        color: #5c5c5c;
        position: relative;
        padding-left: 25px;
    }

    .faq-answer li:before {
        content: '✓';
        color: #667eea;
        font-weight: bold;
        position: absolute;
        left: 0;
        top: 8px;
    }

    .coupon-code {
        display: inline-block;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 5px 15px;
        border-radius: 5px;
        font-family: monospace;
        font-weight: bold;
        margin: 0 5px;
    }

    .highlight-box {
        background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
        border-left: 4px solid #667eea;
        padding: 20px;
        border-radius: 0 8px 8px 0;
        margin: 15px 0;
    }

    /* How It Works Section */
    .how-it-works {
        background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
        border-radius: 15px;
        padding: 60px 40px;
        margin: 80px 0;
        text-align: center;
    }

    .how-it-works h3 {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        color: #2a2a2a;
        margin-bottom: 20px;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .step-item {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

    .step-item:hover {
        transform: translateY(-5px);
    }

    .step-number {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: bold;
        margin: 0 auto 20px;
    }

    /* CTA Section */
    .faq-cta {
        background: white;
        border: 2px solid #e1e5e9;
        border-radius: 15px;
        padding: 60px 40px;
        text-align: center;
        margin: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .faq-cta:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .faq-cta h3 {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        color: #2a2a2a;
        margin-bottom: 20px;
    }

    .faq-cta p {
        color: #5c5c5c;
        max-width: 700px;
        margin: 0 auto 30px;
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-btn {
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
    }

    .cta-btn.primary {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
    }

    .cta-btn.primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    }

    .cta-btn.secondary {
        background: transparent;
        color: #667eea;
        border: 2px solid #667eea;
    }

    .cta-btn.secondary:hover {
        background: #667eea;
        color: white;
        transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .faq-hero {
            padding: 60px 20px;
        }

        .faq-hero h1 {
            font-size: 2.5rem;
        }

        .faq-hero p {
            font-size: 1rem;
        }

        .stats-banner {
            padding: 30px 20px;
            margin: -20px 20px 40px;
        }

        .faq-category-title {
            font-size: 1.8rem;
        }

        .faq-question {
            padding: 20px;
            font-size: 1.1rem;
        }

        .faq-answer.show {
            padding: 20px;
        }

        .how-it-works,
        .faq-cta {
            padding: 40px 20px;
        }

        .how-it-works h3,
        .faq-cta h3 {
            font-size: 2rem;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .cta-btn {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .faq-categories {
            flex-direction: column;
            align-items: center;
        }

        .category-btn {
            width: 100%;
            max-width: 300px;
            text-align: center;
            justify-content: center;
        }

        .stats-grid {
            grid-template-columns: 1fr;
        }
    }