    /* Base FAQ styles */
    .faq-item {
        border-bottom: 1px solid #f0f0f0;
    }

    .faq-question {
        display: flex;
        align-items: center;
        width: 100%;
        background: none;
        border: none;
        cursor: pointer;
        transition: 0.2s;
        text-align: left;
        color: #111827;
    }

    .faq-question:hover {
        color: #f37121;
    }

    .faq-question svg {
        transition: 0.3s;
        color: #f37121;
        margin-left: auto;
    }

    .faq-item.active .faq-question svg {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: 0.4s;
    }

    .faq-item.active .faq-answer {
        max-height: 1000px;
        padding-bottom: 1rem;
    }

    /* Sidebar specific */
    .faq-sidebar {
        background: #f9fafb;
        border: 1px solid #f3f4f6;
        padding: 2rem;
        border-top: 4px solid #d1d5db;
        margin-top: 2rem;
    }

    .faq-sidebar .sidebar-title {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .faq-sidebar .faq-question {
        padding: 1rem 0;
        font-size: 14px;
        font-weight: 600;
    }

    /* Main specific */
    .faq-main .faq-question {
        padding: 20px 0;
        font-size: 18px;
        font-weight: 600;
        gap: 15px;
    }

    .faq-main .faq-number {
        color: #f37121;
        font-weight: 800;
        min-width: 25px;
    }

    .faq-main .faq-answer {
        padding-left: 40px;
        color: #555;
        font-size: 15px;
        line-height: 1.6;
    }

    .faq-sidebar .faq-item .faq-answer p {
        font-size: 0.87rem;
    }