/* FAQ Section Styles */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.faq__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.faq__subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.faq__list {
    max-width: 900px;
    margin: 0 auto;
}

.faq__item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item:hover {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}

.faq__question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    user-select: none;
}

.faq__question:hover {
    color: #667eea;
}

.faq__icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #667eea;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.faq__item.active .faq__answer {
    max-height: 500px;
    padding: 0 24px 24px 24px;
}

@media (max-width: 768px) {
    .faq__title {
        font-size: 2rem;
    }

    .faq__question {
        font-size: 1rem;
        padding: 20px;
    }

    .faq__answer {
        font-size: 0.9rem;
    }
}
