.faq-section {
        position: relative;
        padding: 8rem 2rem;
        background: #000000;
        overflow: hidden;
    }

    .faq-section::before {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(0, 194, 160, 0.1), transparent 70%);
        filter: blur(120px);
        pointer-events: none;
    }

    .faq-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .section-header {
        text-align: center;
        margin-bottom: 5rem;
        animation: fadeInUp 1s ease-out;
    }

    .section-label {
        display: inline-block;
        color: #1E73BE;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 1rem;
        position: relative;
    }

    .section-label::before,
    .section-label::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, #1E73BE, transparent);
    }

    .section-label::before {
        right: calc(100% + 15px);
    }

    .section-label::after {
        left: calc(100% + 15px);
        background: linear-gradient(90deg, transparent, #1E73BE);
    }

    .section-title {
        font-size: 3rem;
        font-weight: 700;
        color: #FFFFFF;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .section-title-gradient {
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-description {
        font-size: 1.2rem;
        color: #B0B0B0;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* FAQ Grid */
    .faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: 4rem;
    }

    /* FAQ Item */
    .faq-item {
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(15, 15, 15, 0.6));
        border: 1px solid rgba(30, 115, 190, 0.2);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: rgba(30, 115, 190, 0.4);
    }

    .faq-item.active {
        border-color: #1E73BE;
        box-shadow: 0 10px 30px rgba(30, 115, 190, 0.2);
    }

    .faq-question {
        padding: 1.5rem 2rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        transition: all 0.3s ease;
        user-select: none;
    }

    .faq-item:hover .faq-question {
        background: rgba(30, 115, 190, 0.05);
    }

    .faq-question-text {
        font-size: 1.1rem;
        font-weight: 600;
        color: #FFFFFF;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .faq-question-icon {
        min-width: 40px;
        height: 40px;
        background: linear-gradient(135deg, rgba(30, 115, 190, 0.2), rgba(0, 194, 160, 0.2));
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1E73BE;
        font-size: 1.2rem;
    }

    .faq-toggle {
        min-width: 32px;
        height: 32px;
        background: rgba(30, 115, 190, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1E73BE;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .faq-item.active .faq-toggle {
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
        color: #FFFFFF;
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
    }

    .faq-answer-content {
        padding: 0 2rem 1.5rem 2rem;
        color: #B0B0B0;
        line-height: 1.7;
        font-size: 0.95rem;
    }

    .faq-answer-content p {
        margin-bottom: 1rem;
    }

    .faq-answer-content p:last-child {
        margin-bottom: 0;
    }

    .faq-answer-content strong {
        color: #E0E0E0;
    }

    /* CTA Box */
    .faq-cta {
        margin-top: 4rem;
        background: linear-gradient(135deg, rgba(30, 115, 190, 0.1), rgba(0, 194, 160, 0.1));
        border: 1px solid rgba(30, 115, 190, 0.3);
        border-radius: 20px;
        padding: 3rem;
        text-align: center;
    }

    .faq-cta-title {
        font-size: 1.8rem;
        font-weight: 700;
        color: #FFFFFF;
        margin-bottom: 1rem;
    }

    .faq-cta-text {
        font-size: 1.1rem;
        color: #B0B0B0;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .faq-cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .faq-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1rem;
    }

    .faq-btn-primary {
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
        color: #FFFFFF;
    }

    .faq-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(30, 115, 190, 0.4);
    }

    .faq-btn-secondary {
        background: rgba(30, 115, 190, 0.1);
        border: 2px solid rgba(30, 115, 190, 0.3);
        color: #1E73BE;
    }

    .faq-btn-secondary:hover {
        background: rgba(30, 115, 190, 0.2);
        border-color: #1E73BE;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive */
    @media (max-width: 968px) {
        .faq-section {
            padding: 5rem 1.5rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .section-description {
            font-size: 1rem;
        }

        .faq-grid {
            grid-template-columns: 1fr;
        }

        .faq-question {
            padding: 1.25rem 1.5rem;
        }

        .faq-question-text {
            font-size: 1rem;
        }

        .faq-answer-content {
            padding: 0 1.5rem 1.25rem 1.5rem;
        }

        .faq-cta-buttons {
            flex-direction: column;
        }

        .faq-btn {
            width: 100%;
            justify-content: center;
        }

        .section-label::before,
        .section-label::after {
            display: none;
        }
    }