    .faq-card {
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        margin-bottom: 20px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .faq-header {
        background: #069756;
        color: white;
        padding: 20px 30px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }

    .faq-header:hover {
        background: #1c934c;
    }

    .faq-header h5 {
        margin: 0;
        font-weight: 600;
        font-size: 1.25rem;
        font-family: "Nunito", sans-serif;
    }

    .faq-icon {
        font-size: 20px;
        transition: transform 0.3s ease;
    }

    .faq-card.active .faq-icon {
        transform: rotate(45deg);
    }

    .faq-content {
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-card.active .faq-content {
        padding: 30px;
        max-height: 500px;
    }

    .faq-content p {
        margin: 0;
        line-height: 1.6;
        color: #666;
    }

    .faq-category {
        margin-bottom: 50px;
    }

    .faq-category h3 {
        color: #069756;
        margin-bottom: 30px;
        font-weight: 600;
        position: relative;
        padding-bottom: 10px;
    }

    .faq-category h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: #069756;
        border-radius: 2px;
    }

    .btn-outline-light:hover {
        background: white;
        color: #069756;
    }