    /* Base Styles */
    .faq-section {
        padding: 4rem 0;
        background: linear-gradient(to bottom, #f8fafc 0%, #f1f5f9 100%);
        font-family: 'Inter', sans-serif;
    }

    .faq-container {
        max-width: 768px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .faq-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 3rem;
        text-align: center;
        background: linear-gradient(45deg, #3b82f6, #6366f1);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        animation: titleEntrance 1s ease-out;
    }

    /* FAQ Items */
    .faq-item {
        background: white;
        border-radius: 12px;
        margin-bottom: 1rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        transition: box-shadow 0.3s ease;
    }

    .faq-item:hover {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .faq-question {
        width: 100%;
        padding: 1.25rem 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none;
        background: none;
        cursor: pointer;
    }

    .faq-question-text {
        font-size: 1.125rem;
        font-weight: 600;
        color: #1e293b;
        transition: color 0.3s ease;
    }

    .faq-question:hover .faq-question-text {
        color: #3b82f6;
    }

    .chevron {
        width: 1.5rem;
        height: 1.5rem;
        color: #3b82f6;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Answer Styles */
    .faq-answer-container {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease-out;
    }

    .faq-answer {
        padding: 0 1.5rem 1.5rem;
        color: #475569;
        line-height: 1.6;
    }

    /* Active States */
    .faq-item.active .chevron {
        transform: rotate(180deg);
    }

    .faq-item.active .faq-answer-container {
        opacity: 1;
    }

    /* Animations */
    @keyframes titleEntrance {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 640px) {
        .faq-title {
            font-size: 2rem;
        }

        .faq-question-text {
            font-size: 1rem;
        }
    }