* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

:root {
  --pink: #ff4d8d;
  --pink-dark: #c73568;
  --pink-light: #fff1f6;
  --green: #7ba73b;
  --text: #4b3c42;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255,77,141,.15), transparent 35%),
    radial-gradient(circle at top right, rgba(123,167,59,.12), transparent 30%),
    linear-gradient(180deg, #fff7fa, #ffffff);
  color: var(--text);
  padding: 30px 15px;
}

.back-link {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
  color: var(--pink-dark);
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 999px;
  background: white;
  border: 1px solid #ffd0df;
  box-shadow: 0 10px 20px rgba(199,53,104,.10);
  transition: .25s;
}

.back-link:hover {
  transform: translateX(-4px);
}

.contact-page {
  width: min(950px, 95%);
  margin: 0 auto;
}

.contact-hero {
  background: rgba(255,255,255,.92);
  border: 1px solid #ffd0df;
  border-radius: 30px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(199,53,104,.12);
  margin-bottom: 25px;
}

.badge {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink-dark);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 15px;
}

.contact-hero h1 {
  font-size: clamp(34px, 6vw, 56px);
  color: var(--pink-dark);
  margin-bottom: 18px;
}

.contact-hero p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-box {
  background: rgba(255,255,255,.95);
  border: 1px solid #ffd0df;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(199,53,104,.12);
}

.contact-box h2 {
  color: var(--pink-dark);
  margin-bottom: 12px;
}

.contact-box p {
  line-height: 1.8;
  color: #5c4a52;
}

.contact-box a {
  display: inline-block;
  margin-top: 18px;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), #ff8db6);
  color: white;
  text-decoration: none;
  font-weight: 900;
  transition: .25s;
}

.contact-box a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(199,53,104,.20);
}

footer {
  margin-top: 30px;
  text-align: center;
  color: #6b5a61;
  font-size: 14px;
  padding-bottom: 25px;
}

@media (max-width: 760px) {
  .contact-card {
    grid-template-columns: 1fr;
  }
}