.faq {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid #333;
    padding: 15px 0;
}
.faq-item:hover {
    color: var(--white);
}

.faq-question {
    cursor: pointer;
    position: relative;
    font-weight: bold;
    padding-right: 30px;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    content: "−";
}

.faq-answer {
    display: none;
    margin-top: 10px;
    color: #ccc;
    line-height: 25px;
}
.faq-answer a {
    text-decoration: underline;
}

.faq-answer.show {
    display: block;
}