    .pf-faq-modern-section {
        padding: 6rem 0;
        background-color: #ffffff;
        border-top: 1px solid #f1f5f9;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .pf-faq-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .pf-faq-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .pf-faq-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        padding: 0.25rem 0.75rem;
        background-color: #f1f5f9;
        border: 1px solid #e2e8f0;
        border-radius: 9999px;
        color: #475569;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.025em;
    }

    .pf-testi-title {
        font-size: 3rem;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.1;
        letter-spacing: -0.025em;
        margin: 0;
    }

    .pf-faq-desc {
        margin-top: 1rem;
        color: #64748b;
        font-weight: 500;
        font-size: 1rem;
    }

    .pf-faq-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        align-items: start;
    }

    @media (min-width: 768px) {
        .pf-faq-list {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .pf-faq-card {
        background-color: #f8fafc;
        border: 1px solid #f1f5f9;
        border-radius: 1rem;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .pf-faq-btn {
        width: 100%;
        text-align: left;
        padding: 1.75rem 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        background-color: #ffffff;
        border: none;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .pf-faq-btn:hover {
        background-color: #f8fafc;
    }

    .pf-faq-question {
        font-weight: 700;
        color: #0f172a;
        font-size: 1.125rem;
        text-align: left;
    }

    .pf-faq-icon {
        font-size: 1.5rem;
        color: #94a3b8;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .pf-faq-content-wrapper {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .pf-faq-body {
        padding: 0 1.5rem 1.5rem 1.5rem;
        color: #64748b;
        font-size: 0.95rem;
        line-height: 1.625;
        font-weight: 400;
    }

    .pf-faq-card.active .pf-faq-icon {
        transform: rotate(45deg);
        color: #4f46e5;
    }

    .pf-faq-card.active .pf-faq-btn {
        background-color: #f8fafc;
        border-bottom: 1px solid #f1f5f9;
    }