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

body {
  font-family: 'Inter', sans-serif;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: #111;
}

.container {
  text-align: left; 
  max-width: 480px;
}

h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact p {
  margin: 4px 0;
}

.contact a {
  color: #111;
  text-decoration: underline;
}
