.faq-section {
    padding: 80px 0;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item.active {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(102, 126, 234, 0.35);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 18px 22px;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 14px;
}
.faq-question:hover {
    color: #667eea;
}
.faq-toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
}
.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    color: #667eea;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
    max-height: 450px;
}
.faq-answer p {
    padding: 0 22px 18px 22px;
    margin: 0;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    font-size: 0.92rem;
}
