/* --- FAQ Accordion --- */
.faq-container h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.faq-item summary {
    cursor: pointer;
    font-weight: bold;
    padding: 15px 0;
    list-style: none;
    position: relative;
    font-size: 1.2rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:after {
    content: "+";
    position: absolute;
    right: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.faq-item[open] summary:after {
    content: "-";
}

.faq-item p {
    padding-bottom: 20px;
    color: var(--text-body);
}
