/**
 * FAQ Frontend Styles
 */
.faq-list {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 900px;
    margin: 0 auto;
}
.faq-items { list-style: none; padding: 0; margin: 0; }
.faq-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}
.faq-item:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.1); transform: translateY(-2px); }
.faq-item.important { border-left: 4px solid #ff6b6b; }
.faq-item.hot { border-left: 4px solid #ff9900; }
.faq-link {
    display: block;
    padding: 18px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding-right: 40px;
}
.faq-link::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #1a56db;
    transition: transform 0.3s;
}
.faq-item.active .faq-link::after { content: "−"; }
.faq-link:hover { color: #1a56db; }
.faq-answer {
    display: none;
    padding: 0 20px 18px;
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}
.faq-item.active .faq-answer { display: block; }
.faq-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    margin-right: 8px;
    text-transform: uppercase;
}
.faq-badge.important { background: #ff6b6b; color: #fff; }
.faq-badge.hot { background: #ff9900; color: #fff; }
.faq-empty { text-align: center; padding: 60px 20px; color: #999; }
.faq-category-title {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1a56db;
    color: #333;
}
