.faq-section {
    padding: 4rem 0;
    background: var(--background-gray, #f8f9fb);
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary, #1e293b);
    margin-bottom: 1rem;
}

.faq-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary, #475569);
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--text-primary, #1e293b);
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-item h3 i {
    color: var(--primary-color, #2d6cdf);
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-secondary, #475569);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .faq-section .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
    
    .faq-item p {
        font-size: 1rem;
    }
} 