/* Privacy Page Styles */

/* 页面整体样式 */
body {
    background-color: #000 !important;
    color: #fff !important;
}

/* 导航栏样式 */
.navbar-section-2-0 {
    background-color: #000 !important;
}

.navbar-2 {
    background-color: #000 !important;
}

.navlink-2-0 {
    color: #fff !important;
}

.navlink-2-0:hover {
    color: #ccc !important;
}

.brand-2 {
    color: #fff !important;
}

/* 主要内容区域 */
.main-content {
    background-color: #000 !important;
    color: #fff !important;
    padding: 120px 0 80px;
}

/* 标题样式 - 保持居中 */
.page-title {
    color: #fff !important;
    text-align: center !important;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* 内容区域样式 - 左对齐 */
.content-section {
    margin-bottom: 3rem;
    text-align: left !important;
}

.content-section h2 {
    color: #fff !important;
    text-align: left !important;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-section h3 {
    color: #fff !important;
    text-align: left !important;
    font-size: 1.25rem;
    margin: 1.5rem 0 0.5rem;
    font-weight: 600;
}

.content-section p {
    color: #fff !important;
    text-align: left !important;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.content-section ul {
    margin: 1rem 0 1rem 2rem;
    text-align: left !important;
}

.content-section li {
    color: #fff !important;
    text-align: left !important;
    margin-bottom: 0.5rem;
}

.content-section strong {
    color: #fff !important;
    font-weight: 600;
}

.content-section a {
    color: #87ceeb !important;
    text-decoration: none;
}

.content-section a:hover {
    color: #fff !important;
}

/* 页脚样式 */
footer {
    background-color: #111 !important;
    color: #fff !important;
    padding: 60px 0 30px;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #fff !important;
    font-weight: 600;
}

.footer-section p, .footer-section a {
    color: #fff !important;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #ccc !important;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 0 15px;
    }
}