/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
    margin-top: 80px;
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.faq-question::before {
    content: "Q";
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 2px;
    flex-shrink: 0;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
        margin-top: 60px;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }
}