 /* FAQ Section */
    .faq-section {
        padding: 5rem 0;
        background: #ffffff;
    }

    .faq-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* Section Header */
    .faq-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 3rem;
    }

    .section-subtitle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .subtitle-line {
        width: 50px;
        height: 2px;
        background: #1E73BE;
    }

    .section-subtitle span {
        font-size: 0.875rem;
        font-weight: 600;
        color: #1E73BE;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: #000000;
        line-height: 1.3;
        margin: 0 0 1rem 0;
    }

    .section-description {
        font-size: 0.95rem;
        color: #666666;
        line-height: 1.7;
        margin: 0;
    }

    /* FAQ Grid */
    .faq-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    /* FAQ Item */
    .faq-item {
        background: #f8f9fa;
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
    }

    .faq-item.active {
        border-left-color: #1E73BE;
        background: #ffffff;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .faq-question {
        width: 100%;
        padding: 1.5rem;
        background: none;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        cursor: pointer;
        text-align: left;
        font-size: 1rem;
        font-weight: 600;
        color: #000000;
        transition: all 0.3s ease;
    }

    .faq-question:hover {
        color: #1E73BE;
    }

    .faq-question i {
        font-size: 0.875rem;
        color: #1E73BE;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.5rem 1.5rem;
        margin: 0;
        font-size: 0.95rem;
        color: #666666;
        line-height: 1.7;
    }

    .faq-answer strong {
        color: #1E73BE;
        font-weight: 600;
    }

    /* FAQ CTA */
    .faq-cta {
        background: #f8f9fa;
        padding: 3rem;
        text-align: center;
        border-left: 3px solid #1E73BE;
    }

    .faq-cta h3 {
        font-size: 1.6rem;
        font-weight: 700;
        color: #000000;
        margin: 0 0 0.5rem 0;
    }

    .faq-cta p {
        font-size: 1rem;
        color: #666666;
        margin: 0 0 2rem 0;
    }

    .btn-faq {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: #1E73BE;
        color: #ffffff;
        padding: 1rem 2rem;
        border-radius: 0;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        border: 2px solid #1E73BE;
    }

    .btn-faq:hover {
        background: #155a94;
        border-color: #155a94;
    }

    .btn-faq i {
        font-size: 0.9rem;
    }

    /* Responsive Design */
    @media screen and (max-width: 968px) {
        .faq-section {
            padding: 4rem 0;
        }

        .faq-grid {
            grid-template-columns: 1fr;
        }

        .section-title {
            font-size: 1.8rem;
        }

        .faq-cta {
            padding: 2rem;
        }
    }

    @media screen and (max-width: 768px) {
        .faq-container {
            padding: 0 1.5rem;
        }

        .section-title {
            font-size: 1.75rem;
        }

        .faq-question {
            font-size: 0.95rem;
            padding: 1.2rem;
        }

        .faq-answer p {
            padding: 0 1.2rem 1.2rem 1.2rem;
            font-size: 0.9rem;
        }

        .btn-faq {
            width: 100%;
            justify-content: center;
        }
    }

    @media screen and (max-width: 480px) {
        .section-title {
            font-size: 1.5rem;
        }

        .faq-cta h3 {
            font-size: 1.3rem;
        }
    }