/* FAQ Component Styles */
.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid transparent;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(230, 0, 18, 0.2);
}

.faq-item.active {
    background: rgba(230, 0, 18, 0.03);
    border-color: rgba(230, 0, 18, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-red);
}

.faq-item.active .faq-question {
    color: var(--primary-red);
}

.faq-question i {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: var(--primary-red);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
    padding: 0 30px;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-bottom: 30px;
    opacity: 1;
}

.faq-answer p {
    line-height: 1.8;
    font-size: 1rem;
    word-break: keep-all;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px;
    }
}