.faq-item {
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--color-white);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.06);
}

.faq-question span {
    color: var(--color-accent-green);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: rgba(187, 255, 0, 0.05);
    color: var(--color-accent-green);
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    color: var(--color-gray-light);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem 2rem;
    max-height: 500px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}