:root {
    --primary-color: #2c5282;
    --secondary-color: #3182ce;
    --light-color: #f7fafc;
    --dark-color: #2d3748;
    --gray-100: #e2e8f0;
    --transition-speed: 0.3s;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* 导航栏 */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color);
    transition: color var(--transition-speed);
    padding: 1rem 1.5rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-color);
}

.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    font-weight: 400;
    padding: 0.5rem 1.5rem;
}

.dropdown-item:hover {
    background-color: rgba(44, 82, 130, 0.1);
}

/* 隐私政策页面 */
.privacy-container {
    padding: 4rem 0;
}

.privacy-sidebar {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    height: fit-content;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
}

.sidebar-nav .nav-item {
    margin-bottom: 1rem;
}

.sidebar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.75rem 0;
    border-left: 3px solid transparent;
    transition: all var(--transition-speed);
    display: block;
}

.sidebar-nav .nav-link:hover, .sidebar-nav .nav-item.active .nav-link {
    color: var(--secondary-color);
    border-left: 3px solid var(--secondary-color);
}

.submenu {
    padding-left: 20px;
    margin-top: 0.5rem;
}

.submenu .nav-item {
    margin-bottom: 0.5rem;
}

.submenu .nav-link {
    font-size: 0.9rem;
    font-weight: 400;
}

.privacy-content {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 3rem;
}

.page-title {
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.section-title {
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.subsection-title {
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
}

/* 版权信息栏 */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-logo {
    margin-top: 1rem;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: white;
}

.copyright {
    margin-bottom: 0.5rem;
}

.copyright a {
    color: #cbd5e0;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .privacy-sidebar {
        display: none;
    }
}