/* FAQ Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 300;
    transition: transform 0.3s;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 25px 30px;
}

.faq-answer p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.faq-answer ol,
.faq-answer ul {
    margin: 15px 0;
    padding-left: 30px;
}

.faq-answer li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--primary-hover);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 18px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
}

