.faq-wrapper {
    border-radius: 6px;
    font-family: "DM Sans", sans-serif;
}
.faq-sec{
    margin: 0 auto;
    max-width: 790px;
}
.faq-title{
    text-align: center;
    h2{
        font-size: 38px;
        font-weight: 700;
        color: #000000;
        line-height: normal;
        font-family: "DM Sans", sans-serif;
        padding-bottom: 20px!important;
    }
}
/* Each Item */
.faq-item {
    border-bottom: 0;
    border-radius: 6px;
    margin-bottom: 8px;
    transition: all 0.4s;
    font-family: "DM Sans", sans-serif;
}
/* Question Button */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    background: #F7F7F8!important;
    color: #000000!important;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.4s ease;
    border-radius: 6px;
    font-family: "DM Sans", sans-serif;
    text-shadow: none!important;
}
/* Hover effect */
.faq-question:hover {
    background: #F1F1F1;
}
/* Default Plus Icon */
.faq-question::after {
    content: "+";
    font-size: 23px;
    font-weight: 600;
    color: #333;
    margin-left: auto;
    transition: transform 0.4s ease;
}
/* Active (opened) Question shows Minus */
.faq-question.active::after {
    content: "−";
    transform: rotate(180deg);
    transition: all 0.4s;
}
/* Answer Box - Transition using max-height */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.6;
    background: #fff;
    color: #444;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
/* Open state */
.faq-answer.open {
    max-height: max-content; /* adjust if content is taller */
    padding: 15px 20px;
    display: block;
}
.faq-answer p {
    padding: 0px;
    margin: 0px;
}