/* FAQ Section */
#faq {
    padding: 80px 20px;
    background-color: var(--secondary-color);
}

.faq-container {
    max-width: var(--width);
    margin: 0 auto;
}
.faq-container h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
}

.faq-container h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    transform: translateX(-50%);
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-question {
    background: white;
    color: var(--primary-color);
    padding: 20px 60px 20px 25px;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    background: white;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    border-left: 3px solid var(--accent-color);
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 50px 18px 20px;
        font-size: 1rem;
    }
    
    .faq-question::after {
        right: 20px;
    }
}