body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to right, #e0eafc, #cfdef3);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

.container {
  padding: 2rem;
  max-width: 800px;
}

.card {
  background-color: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  max-width: 420px;
  text-align: center;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

h1 {
  margin-top: 0;
  font-size: 2rem;
  color: #222;
}

.subtitle {
  color: #555;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.contact-info p {
  margin: 1rem 0;
  color: #333;
  font-size: 1rem;
}

a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

.legal {
  margin-top: 3rem;
  background: #ffffffcc;
  padding: 2rem;
  border-radius: 12px;
  font-size: 0.9rem;
  color: #333;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.legal h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
