/* ========== Contact 页面样式 ========== */

.contact-page {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center; /* ✅ 所有内容水平居中 */
}

.contact-page h1 {
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Futura", sans-serif;
  margin-bottom: 20px;
  color: #2bbcc2;
}

.contact-page p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2bbcc2;
  margin: 10px 0;
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-top: 30px;
  color: #2bbcc2;
}

.contact-info p {
  margin: 5px 0;
  color: #2bbcc2;
}

/* ✅ 横排联系方式，居中对齐 */
.contact-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
  color: #2bbcc2;
  font-size: 1rem;
}

.contact-methods span,
.contact-methods a {
  color: #2bbcc2;
  text-decoration: none;
}

.contact-methods a:hover {
  text-decoration: underline;
}

/* ✅ 手机适配 */
@media (max-width: 768px) {
  .contact-page {
    padding: 20px 10px;
  }

  .contact-page h1 {
    font-size: 2rem;
  }

  .contact-page p,
  .contact-methods {
    font-size: 0.95rem;
  }

  .contact-methods {
    flex-direction: column;
    gap: 4px;
  }
}

