/* bottom */
/* 整体底部容器居中 */
.footer-container {
  background-color: #f8f8f8;
  padding: 40px 20px;
  text-align: center;
  font-size: 14px;
  color: #444;
}

/* 每个 section 居中显示 */
.footer-section {
  margin-bottom: 30px;
}

/* 标题样式 */
.footer-section h4 {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 16px;
}

/* 横向排列列表项 */
.footer-section ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 列表项样式 */
.footer-section ul li {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 链接样式 */
.footer-section a {
  color: #0077cc;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

/* 图标样式（可选） */
.footer-section i {
  color: #555;
}