* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.card {
  width: 100%;
  max-width: 800px;
  margin-top: -40px;
}

h1 {
  font-size: clamp(26px, 7vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 14px;
  white-space: nowrap;
}

.address {
  font-size: clamp(18px, 4vw, 24px);
  line-height: 1.2;
  margin-bottom: 14px;
}

.info {
  font-size: clamp(14px, 3.2vw, 16px);
  line-height: 1.6;
}

.info strong {
  font-weight: 700;
}

a {
  color: #000000;
  text-decoration: none;
  word-break: break-word;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  body {
    padding: 12px;
  }

  .card {
    margin-top: 0;
  }

  h1 {
    font-size: clamp(20px, 7.5vw, 26px);
  }

  .address {
    font-size: 18px;
  }

  .info {
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 20px;
  }

  .address {
    font-size: 16px;
  }

  .info {
    font-size: 13px;
  }
}