body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

header {
    background: #333;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #77b12f 3px solid;
    text-align: center; /* 仅用于居中标题和导航，实际布局中可能需要调整 */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.section {
    padding: 20px 0;
}

.section h2 {
    text-align: center; /* 可根据需要调整 */
    margin-bottom: 20px;
}

/* .service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
} */

/* 确保服务项占据一整行的宽度 */
.service-item {
    width: 100%; /* 设置宽度为100%，确保每个项占据一行 */
    box-sizing: border-box; /* 包括内边距和边框在内计算元素的总宽度 */
    padding: 20px; /* 可根据需要调整内边距 */
    margin-bottom: 20px; /* 项与项之间的垂直间距 */
    border-bottom: 1px solid #ddd; /* 可选的底部边框，用于分隔项 */
}

/* 去除最后一个服务项的底部边框（可选） */
.service-list .service-item:last-child {
    border-bottom: none;
}

/* .service-item h3 {
    margin-top: 0;
} */

.contact-info p {
    margin-bottom: 10px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

/* 如果需要，您可以为备案号链接添加一些样式 */
footer a {
    color: #77b12f; /* 链接颜色 */
    text-decoration: none; /* 去除下划线 */
}

footer a:hover {
    text-decoration: underline; /* 鼠标悬停时显示下划线 */
}

/* 确保备案号显示在底部中间（如果需要） */
footer .container {
    text-align: center; /* 居中对齐 */
}

/* 在CSS文件中为.indent-first-line类定义首行缩进 */
.indent-first-line {
    text-indent: 2em; /* 使用2em作为缩进量，em是一个相对单位，基于当前字体大小 */
}
/* 如果您的布局需要更具体的调整，请根据需要添加更多CSS */