.faq-container {
    width: 100%;
    margin: 0 auto;
}

.faq-hero {
    width: 100%;
    background: linear-gradient(135deg, #f94c30 0%, #ff6b4f 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    min-height: 400px;
}

.faq-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.faq-hero-description {
    font-size: 20px;
    margin: 0;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-list {
    background: #fff;
}

.faq-item {
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #f94c30;
    box-shadow: 0 4px 12px rgba(249, 76, 48, 0.1);
}

.faq-item.active {
    border-color: #f94c30;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fff5f3;
}

.faq-item.active .faq-question {
    background: #fff5f3;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #f94c30;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    display: none;
    padding: 0 28px 24px 28px;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    animation: slideDown 0.3s ease;
}

.faq-answer p:first-child {
    margin-top: 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
}

.faq-answer ul, .faq-answer ol {
    padding-left: 24px;
    margin: 16px 0;
}

.faq-answer li {
    margin: 8px 0;
}

.faq-answer a {
    color: #f94c30;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.faq-answer a:hover {
    border-bottom-color: #f94c30;
}

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

@media (max-width: 768px) {
    .faq-hero {
        padding: 60px 20px;
    }
    
    .faq-hero-title {
        font-size: 36px;
    }
    
    .faq-hero-description {
        font-size: 18px;
    }
    
    .faq-content {
        margin: 40px auto;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 20px 20px 20px;
        font-size: 15px;
    }
}