.faq-section {
    padding: 100px 0;
    background-color: transparent;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #060606;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(255, 255, 255, 0.2);
    background: #080808;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: #ccc;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question span {
    color: #fff;
}

.faq-question i {
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .faq-question {
        padding: 15px 20px;
    }
}