.faq_title{
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 52px;
    color: var(--black);
    text-align: center;
}
.faq-answer_text{
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 15px;
    color: var(--black);
}
.faq-section{
    max-width: 800px;
    margin: 20px auto 0 20px;
}
.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    padding-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question {
    font-weight: 600;
    font-size: 18px;
    font-family: var(--font-family);
    color: var(--black);
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
    cursor: pointer;
}

.faq-arrow {
    font-size: 16px;
    margin-left: 10px;
    transition: transform 0.3s ease;
    color: #999;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: #0073aa;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    padding-left: 10px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    margin-top: 10px;
}