/* Page Template Styles */

/* 头部导航样式 */
.header {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 16px 0;
}

.header-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #E6A600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav {
    width: 100%;
    margin-top: 12px;
}

@media (min-width: 768px) {
    .nav {
        width: auto;
        margin-top: 0;
    }
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #333;
    text-decoration: none;
}

.nav-link.active {
    color: #E6A600;
    font-weight: 500;
}

/* 主要内容区 - 关键修复：确保完全居中 */
.content-wrapper {
    /* 这个容器确保所有内容居中 */
    max-width: 900px;
    margin: 30px auto 50px;
    padding: 0 20px;
}

/* 面包屑导航样式 */
.breadcrumb {
    padding: 15px 0;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.breadcrumb a {
    color: #007cba;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 10px;
    color: #999;
}

/* 内容卡片样式 */
.card {
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    padding: 30px;
    margin-bottom: 25px;
}

.section-title {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #F0EBE0;
}

.section-title h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
}

/* 常见问题样式 */
.faq-item {
    margin-bottom: 15px;
}

.faq-item:last-child {
    margin-bottom: 0;
}