/* 全局样式和重置 */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333; /* 主要文本颜色 - 深灰 */
    background-color: #f4f4f4; /* 背景颜色 - 浅灰 */
}

/* 链接样式 */
a {
    color: #007bff; /* 链接颜色 - 蓝色 (方便点击) */
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* 头部样式 */
.hero-section {
    background-color: #333; /* 深色背景 */
    color: #fff; /* 白色文字 */
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 20px;
}

.hero-section h1 {
    margin-top: 0;
    font-size: 2.5em;
}

.hero-section .tagline {
    font-size: 1.2em;
    color: #ccc;
}

/* 主要内容区域 */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 章节样式 */
.section {
    background-color: #fff; /* 白色卡片背景 */
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px; /* 轻微圆角 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 轻微阴影 */
}

.section h2 {
    color: #333;
    border-bottom: 2px solid #f4f4f4;
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px;
}

/* 联系方式列表样式 */
.contact-list p {
    margin: 10px 0;
    font-size: 1.1em;
}

.contact-list strong {
    display: inline-block;
    width: 80px; /* 统一标签宽度 */
}

.contact-list a {
    font-weight: bold;
}

.note {
    margin-top: 25px;
    font-style: italic;
    color: #666;
    border-top: 1px dashed #ccc;
    padding-top: 15px;
}

/* 底部样式 */
footer {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 0.9em;
    margin-top: 40px;
    border-top: 1px solid #ddd;
}