/*=============== FAQ PAGE STYLES ===============*/
.faq {
    background-color: var(--body-color);
    padding: 5rem 0;
}

.faq__description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-color-light);
}

.faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border-radius: 0.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 18px rgba(30, 4, 55, 0.2);
    overflow: hidden;
    transition: 0.3s ease;
    border: 1px solid white;
}

.faq__question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    font-weight: var(--font-semi-bold);
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--title-color);
}

.faq__icon {
    font-size: 1.4rem;
    transition: 0.3s ease;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: var(--text-color-light);
    transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 200px;
    padding: 1rem 1.5rem;
}
