/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #fff;
}

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 4rem;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    border-bottom-color: #f4be0b;
}

.faq-item.faq-new .faq-answer p {
    color: #666;
}

.faq-question {
    background: transparent;
    border: none;
    text-align: left;
    width: 100%;
    cursor: pointer;
    padding: 0;
    margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    text-align: left;
    flex: 1;
    padding-right: 20px;
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 300;
    color: #403473;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    content: '−';
    color: #f4be0b;
}

.faq-item.active .faq-question h3 {
    color: #403473;
}

.faq-answer {
    padding: 0;
    background: transparent;
    display: none;
    margin-bottom: 10px;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    padding-left: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 15px;
    }
    
    .faq-column {
        gap: 15px;
    }
    
    .faq-question h3 {
        font-size: 1.2rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 15px 20px 20px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}