body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(135deg, #f0f0f0, #ffffff);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.header .logo {
  width: 300px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contact-info a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

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

.footer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #999;
}
