/* privacy-policy.css */

/* 头部容器的布局 */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    position: relative;
}

/* 页面标题的样式 */
.page-title {
    flex-grow: 1;
    text-align: center;
    color: var(--text-color);
    font-size: 24px;
    margin: 0;
}

/* 返回按钮的样式 */
.back-button {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    text-decoration: none;
    color: var(--text-color);
    z-index: 10;
}

/* 容器的样式 */
.container {
    max-width: 400px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 移除列表前面的圆点 */
ul {
    list-style-type: none;
}