.faq-container-fd118e86 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item-fd118e86 {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}
.faq-item-fd118e86:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.faq-question-fd118e86 {
    margin: 0;
    padding: 20px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    color: #333;
}
.faq-icon-fd118e86 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f0f0;
    margin-right: 15px;
    font-size: 1.2rem;
    font-weight: 400;
    transition: all 0.3s ease;
}
.faq-item-fd118e86.active .faq-icon-fd118e86 {
    background: #333;
    color: #fff;
}
.faq-answer-fd118e86 {
    display: none;
    padding: 0 20px 20px 65px;
    color: #666;
    line-height: 1.6;
}