@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

.faq-section {
    padding: 60px 20px 60px;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-header {
    width: 552px;
    height: fit-content;
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-header h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 54px;
    letter-spacing: 0;
    color: #1a1a1a;
    margin: 0;
}

.faq-header p {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    leading-trim: none;
    line-height: 1.4;
    letter-spacing: 0%;
    text-align: center;
    color: #ABABAB;
    margin: 0;
}

.accordion {
    --bs-accordion-border-color: transparent;
    --bs-accordion-bg: transparent;
    width: 713px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: #f5f5f5;
    border: none;
    border-radius: 12px;
    width: 713px;
    min-height: 72px;
    margin-bottom: 0;
    overflow: hidden;
}

.accordion-button {
    background-color: #f5f5f5;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    padding: 24px 30px;
    border: none;
    box-shadow: none !important;
    min-height: 72px;
    display: flex;
    align-items: center;
}

.accordion-button:not(.collapsed) {
    background-color: #f5f5f5;
    color: #1a1a1a;
}

.accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    width: auto;
    height: auto;
    background-size: 0;
    flex-shrink: 0;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    transform: none;
}

.accordion-body {
    background-color: #f5f5f5;
    color: #ABABAB;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    width: 616px;
    letter-spacing: 0%;
    padding: 0 30px 24px 30px;
}

.accordion-button:hover {
    background-color: #efefef;
}

.accordion-button:focus {
    border-color: transparent;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 20px;
    }

    .faq-header {
        width: 100%;
        margin-bottom: 30px;
        gap: 16px;
    }

    .faq-header h1 {
        font-size: 28px;
        line-height: 38px;
    }

    .faq-header p {
        font-size: 13px;
        line-height: 1.4;
    }

    .accordion {
        width: 100%;
        gap: 12px;
    }

    .accordion-item {
        width: 100%;
        min-height: 60px;
    }

    .accordion-button {
        font-size: 16px;
        padding: 20px 24px;
        min-height: 60px;
    }

    .accordion-button::after {
        font-size: 1.2rem;
    }

    .accordion-body {
        width: 100%;
        padding: 0 24px 20px 24px;
        font-size: 13px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 30px 16px;
    }

    .faq-header {
        margin-bottom: 24px;
        gap: 12px;
    }

    .faq-header h1 {
        font-size: 24px;
        line-height: 32px;
    }

    .faq-header p {
        font-size: 12px;
    }

    .accordion {
        gap: 10px;
    }

    .accordion-item {
        min-height: 56px;
    }

    .accordion-button {
        font-size: 15px;
        padding: 18px 20px;
        min-height: 56px;
    }

    .accordion-button::after {
        font-size: 1.1rem;
    }

    .accordion-body {
        padding: 0 20px 18px 20px;
        font-size: 12px;
    }
}
