* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f5f5f5;
  color: #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.contact-card {
  width: 100%;
  max-width: 420px;
  background-color: #ffffff;
  text-align: center;
  padding: 48px 32px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.contact-card h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.contact-card address {
  font-style: normal;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-card p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.contact-card a {
  color: #1f1f1f;
  text-decoration: none;
}

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