/* ================================================================
   8. 第五屏 — Footer / 联系方式
   ================================================================ */

/* ┌────────────────────────────────────────────┐
 * │ 8.1  Footer 容器与三栏布局                   │
 * └────────────────────────────────────────────┘ */

/* ── Footer 主容器 ── */
.page-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 40vh !important;
  height: auto !important; /* 内容多时自动撑开 */
  max-height: none !important;
  padding: 2rem 5%;
  box-sizing: border-box;
}

/* ── 三栏容器 ── */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 50px;
  width: 100%;
  max-width: 1500px;
  flex: 1;
  gap: 20px;
  transform: translate(5vw, -1vw); /* 整体位移微调 */
}
