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

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

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

h1 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0d3b66;
}

.tagline {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #333;
}

.coming-soon {
  font-size: 1.4rem;
  font-weight: 600;
  color: #e63946;
  margin-bottom: 3rem;
}

.footer {
  font-size: 0.9rem;
  color: #555;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}
.contact {
  margin-bottom: 2rem;
}

.contact h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #0d3b66;
}

.contact p {
  margin: 0.3rem 0;
  color: #333;
}

.contact a {
  color: #e63946;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}