/* Simple clean maintenance page */

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  color: #333;
  text-align: center;
}

.container {
  max-width: 600px;
  margin: 80px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.3em;
}

p {
  margin: 0.5em 0;
  color: #555;
}

.contact {
  margin-top: 2em;
}

form input,
form textarea {
  width: 90%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

form button {
  padding: 10px 20px;
  background: #0066cc;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1em;
  border-radius: 4px;
}

footer {
  margin-top: 40px;
  font-size: 0.9em;
  color: #777;
}

/* Email link styling */
.contact a {
  text-decoration: none;        /* remove underline */
  color: #2b6cb0;               /* smooth corporate blue */
  font-weight: 500;
}

.contact a:hover {
  color: #1e4f8f;               /* slightly darker on hover */
}
