
/* ===== FAQ Section ===== */
.faq-section {
    margin: 40px 0 20px;
    border-top: 2px solid #f0f0f0;
    padding-top: 30px;
}
.faq-section__title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.faq-item {
    border-bottom: 1px solid #eee;
    overflow: hidden;
}
.faq-item__question {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    padding: 14px 40px 14px 0;
    cursor: pointer;
    position: relative;
    user-select: none;
    line-height: 1.4;
}
.faq-item__question::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #e05a00;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.2s;
}
.faq-item.open .faq-item__question::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq-item__answer {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px 0 0;
}
.faq-item.open .faq-item__answer {
    max-height: 300px;
    padding: 0 20px 14px 0;
}