section#main_section {
    height: calc(90vh - 5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top;
    text-align: center;
    color: #fff;
}

#main_section h1 {
    font-size: 38px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 120px;
}

.privacy {
    /* 默认情况下，文本就是左对齐的，所以这里不需要特别设置 */
    line-height: 1.8; /* 保持段落行高 */
    /* 如果需要，可以添加 padding 或 margin 来控制内部空间 */
}

/* 如果需要，你可以给 .privacy 添加一些内部样式，例如 padding */
.privacy p {
    padding: 0 20px; /* 给段落添加一些内边距，使其看起来更舒适 */
}