.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.faq-navigation {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.faq-nav-btn {
    padding: 12px 24px;
    border: none;
    background: #f7fafc;
    color: #4a5568;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-nav-btn:hover {
    background: #edf2f7;
    color: #2d3748;
}

.faq-nav-btn.active {
    background: #2d3748;
    color: white;
}

.faq-section {
    display: grid;
    gap: 24px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    cursor: pointer;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    color: #1a202c;
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    color: #4a5568;
}

.faq-item.active h3::after {
    content: '−';
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    display: none;
}

.faq-item.active p {
    display: block;
}

.contact-section {
    text-align: center;
    padding: 60px;
    background: linear-gradient(to bottom, #f7fafc, #edf2f7);
    border-radius: 16px;
    margin-bottom: 40px;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.contact-section p {
    margin-bottom: 32px;
    color: #4a5568;
    font-size: 1.1rem;
}

.contact-section .btn-primary {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.contact-section .btn-primary:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .faq-container {
        padding: 40px 16px;
    }
    
    .faq-header h1 {
        font-size: 2rem;
    }
    
    .faq-navigation {
        gap: 8px;
    }
    
    .faq-nav-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .contact-section {
        padding: 40px 20px;
    }
} 