/* FAQ Accordion Styles */
.faq-accordion {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin: 30px 0; /* Spacing above and below the FAQ box */
    font-family: inherit;
    overflow: hidden;
    background: #fff;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    margin: 0;
    padding: 18px 20px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    display: none; /* using display instead of max-height ensures no content is ever cut off */
    background-color: #fdfdfd;
}

.faq-item.active .faq-answer {
    display: block;
    padding: 20px 20px;
    border-top: 1px solid #f0f0f0;
}

.faq-answer > div {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}
