/* Reset some default browser styles for consistency */
body, h1, h2, p, a, button {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif; /* 使用常见的无衬线字体 */
    text-decoration: none;
}

body {
    background-color: #f4f4f8; /* 轻微的灰色背景 */
    color: #333; /* 主要文字颜色 */
    line-height: 1.5;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 50px;
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

main {
    max-width: 800px;
    margin: 0 auto; /* 居中主内容区域 */
}

section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px; /* 添加圆角 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 轻微的阴影 */
    margin-bottom: 30px;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

p {
    margin-bottom: 20px;
}

button {
    background-color: #2c89a0; /* 选中的宁静蓝色 */
    color: #fff; /* 按钮上的文字颜色 */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #247a8c; /* 按钮hover状态时的颜色 */
}

footer {
    margin-top: 50px;
    text-align: center;
}
