/* ========== 联系页面样式 ========== */
.page-hero {
  padding: 140px 24px 60px;
  background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
  text-align: center;
}
.page-hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.page-hero-content p {
  font-size: 18px;
  color: #64748b;
}

.contact-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

/* 左侧信息 */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: #0eb085;
}
.info-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.info-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1e293b;
}
.info-card p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
}

/* 右侧补充信息 */
.contact-extra {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.extra-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}
.extra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: #0eb085;
}
.extra-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1e293b;
}
.extra-card p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 8px;
}
.extra-card p:last-child {
  margin-bottom: 0;
  color: #0eb085;
  font-weight: 500;
}

@media (max-width: 768px) {
  .page-hero-content h1 { font-size: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .extra-card { padding: 20px; }
}
