/* Reset and minimal base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  color: #000;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 20px;
}

.logo {
  width: 120px;
  height: auto;
  margin-bottom: 30px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

.contact-link {
  display: inline-block;
  font-size: 1rem;
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.contact-link:hover {
  background-color: #000;
  color: #fff;
}
