    .faq-section {
        margin: 0 auto;
        background: white;
        border-radius: 40px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
        padding: 2rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .faq-header h2 {
        font-size: 2.5rem;
        color: #1e3c4f;
        margin-bottom: 0.5rem;
        margin-top: 0;
    }

    .faq-header p {
        color: #64748b;
        font-size: 1.1rem;
        margin: 0;
    }

    .faq-item {
        margin-bottom: 1rem;
        border: 1px solid #000000;
        border-radius: 20px;
        overflow: hidden;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
        background: linear-gradient(90deg, #abb2b8, #71abb6, #2ea393);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        color: #000000;
    }

    .faq-question:hover {
        background: #f8fafd;
    }

    .faq-answer {
        display: none;
        padding: 0 1.5rem 1.5rem 1.5rem;
        color: #ff0000;
        line-height: 2;
    }

    .faq-item.active .faq-answer {
        display: block;
    }

    .arrow {
        transition: transform 0.3s;
    }

    .faq-item.active .arrow {
        transform: rotate(180deg);
    }