* {
    box-sizing: border-box;
    font-family: "Poppins-SemiBold";
}



.faq {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.faq h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #555;
}

.faq-item {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question .icon {
    font-size: 28px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    margin: 0 0 20px 0;
    color: #555;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .icon {
    content: "-";
}

@media (max-width: 767px) {
    .faq {

        padding: 0px 40px;
        margin-bottom: 40px;
    }
}