.faq-page {
    min-height: calc(100vh - 200px);
}

.faq-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    padding: 60px 24px;
    text-align: center;
    color: #ffffff;
}

.faq-hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}

.faq-hero p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px;
}

.faq-section {
    margin-bottom: 40px;
}

.faq-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.faq-section-title .icon {
    font-size: 24px;
}

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

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
}

.faq-question .q-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    flex-shrink: 0;
}

.faq-question span:nth-child(2) {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
}

.faq-question .arrow {
    font-size: 12px;
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 16px 60px;
}

.faq-item.active .faq-answer {
    display: flex;
    gap: 12px;
}

.faq-answer .a-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    flex-shrink: 0;
}

.faq-answer .answer-content {
    flex: 1;
}

.faq-answer .answer-content p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
}

.faq-contact {
    text-align: center;
    padding: 48px 24px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid #e2e8f0;
}

.faq-contact h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px;
}

.faq-contact p {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 24px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-btn.qq {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
}

.contact-btn.qq:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .faq-hero {
        padding: 40px 16px;
    }
    
    .faq-hero h1 {
        font-size: 28px;
    }
    
    .faq-container {
        padding: 32px 16px;
    }
    
    .faq-section-title {
        font-size: 18px;
    }
    
    .faq-question {
        padding: 14px 16px;
    }
    
    .faq-question span:nth-child(2) {
        font-size: 14px;
    }
    
    .faq-answer {
        padding: 0 16px 14px 16px;
    }
    
    .faq-item.active .faq-answer {
        flex-direction: column;
        padding-left: 16px;
    }
    
    .faq-answer .answer-content p {
        font-size: 13px;
    }
}
