/* FAQ Section */
.faq {
    padding: 120px 60px;
    background: var(--bg);
}

.faq__list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq__item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item:hover {
    border-color: var(--accent);
}

.faq__item[open] {
    border-color: var(--accent);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: all 0.3s ease;
    gap: 16px;
}

.faq__question span {
    flex: 1;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question:hover {
    color: var(--accent);
}

.faq__icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    max-width: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq__item[open] .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 32px 24px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq__answer p {
    margin: 0;
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 20px;
    }
    
    .faq__list {
        gap: 12px;
        max-width: 100%;
    }
    
    .faq__question {
        padding: 16px;
        font-size: 15px;
        gap: 12px;
    }
    
    .faq__question span {
        flex: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .faq__answer {
        padding: 0 16px 16px;
        font-size: 14px;
    }
    
    .faq__icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
        max-width: 20px;
    }
}
