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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #fcfcfc;
  color: #0d0d0d;
  font-weight: 300;
}

.container {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.content {
  text-align: center;
  max-width: 28rem;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.logo {
  width: 20rem;
  height: 10rem;
  object-fit: contain;
}

.contact-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #737373;
  font-weight: 300;
}

.contact-link {
  font-size: 1.125rem;
  color: #0d0d0d;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #737373;
}

.contact-text {
  font-size: 1.125rem;
  color: #0d0d0d;
  font-weight: 300;
}
