.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header span {
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-search form {
    display: flex;
    gap: 0.5rem;
}

.faq-search input {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 250px;
}

.faq-search button {
    padding: 0.5rem 1rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.faq-list {
    margin-bottom: 2rem;
}

.faq-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.faq-item:hover {
    background-color: #f8f9fa;
}

.faq-info {
    flex: 1;
}

.faq-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.faq-title a {
    color: #333;
    text-decoration: none;
}

.faq-meta {
    display: flex;
    gap: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.faq-arrow {
    color: #999;
}

.faq-empty {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.page-num, .page-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.page-num.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.page-btn:hover, .page-num:hover {
    background: #f8f9fa;
}

.faq-view {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.faq-content {
    line-height: 1.6;
    margin-bottom: 2rem;
}

.faq-actions {
    text-align: center;
}

.btn-back {
    display: inline-block;
    padding: 0.5rem 2rem;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.btn-back:hover {
    background: #0056b3;
}

.faq-categories {
    display: flex;
    gap: 2.5rem;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.category-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 60px;
    font-size: 1.5rem;
    border: 2px solid #bbb;
    border-radius: 12px;
    background: #fff;
    color: #888;
    font-weight: 400;
    text-decoration: none;
    transition: border 0.2s, color 0.2s, font-weight 0.2s;
    box-sizing: border-box;
}

.category-btn.active {
    border: 2.5px solid #111;
    color: #111;
    font-weight: 700;
    background: #fff;
}

.category-btn:hover {
    border: 2.5px solid #111;
    color: #111;
    font-weight: 700;
    background: #fff;
} 