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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #000000;
  min-height: 100vh;
}

.container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.content {
  text-align: center;
  max-width: 500px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #000000;
}

.description {
  font-size: 18px;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 40px;
}

.email-form {
  margin-bottom: 40px;
}

.contact-button {
  display: inline-block;
  padding: 12px 32px;
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-button:hover {
  background: #ffffff;
  color: #000000;
}

.contact-button:active {
  opacity: 0.8;
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  .description {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

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