.faq-list {
    margin-top: 30px;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    background: none;
    border: none;
    color: var(--light-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    text-align: left;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 500;
}
.faq-question:hover span,
.faq-question:focus span {
    color: var(--primary-color);
}
.faq-icon {
    fill: var(--light-color);
    transition: transform 0.3s ease;
    min-width: 24px;
}
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    padding-bottom: 20px;
    color: var(--gray-color);
    line-height: 1.7;
}
.faq-answer p {
    margin-bottom: 0;
}
