body {
  margin: 0;
  background: #f5f5f7;
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

/* PAGE WRAPPER */
.contact-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

/* TOP BAR (back + title) */
.top-bar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px; /* 👈 bigger space between back and title */
  margin-bottom: 25px;
}

.top-bar h1 {
  margin: 0;
  font-size: 28px;
  color: #111;
}

/* BACK BUTTON */
.back-home {
  text-decoration: none;
  font-size: 14px;
  color: #0071e3;
  font-weight: 500;
}

.back-home:hover {
  text-decoration: underline;
}

/* CARD */
.contact-card {
  background: white;
  border-radius: 24px;
  padding: 40px;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 2px 10px rgba(0, 0, 0, 0.04);
}

/* TEXT */
.intro {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.email-link {
  display: inline-block;
  margin-top: 15px;

  font-size: 18px;
  color: #0071e3;
  text-decoration: none;
  font-weight: 600;
}

.email-link:hover {
  text-decoration: underline;
}

.note {
  margin-top: 20px;
  font-size: 13px;
  color: #777;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-card {
    padding: 24px;
  }

  .top-bar h1 {
    font-size: 24px;
  }
}
