/* Contact Us Page Styles */

/* Main Content */
#main-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;   /* center horizontally */
  justify-content: flex-start; /* default: align top, safe for long content */
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

/* Headings */
#main-content h2 {
  font-size: 2em;
  margin-bottom: 10px;
   color: #99ccff;
}

/* Contact Details */
#main-content p {
  margin: 10px 0;
  line-height: 1.5;
}

#main-content a {
  color: #99ccff;
  text-decoration: none;
}
#main-content a:hover {
  text-decoration: underline;
}

/* Future Contact Form */
.contact-form {
  margin-top: 20px;
  width: 100%;
  max-width: 500px;
  background: #111;
  padding: 20px;
  border-radius: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: none;
  border-radius: 5px;
}
.contact-form button {
  background: #99ccff;
  color: #000;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}
.contact-form button:hover {
  background: #66a3e0;
}
/* Thank You Page Styles */
#main-content.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px;
}

#main-content.thank-you h2 {
  font-size: 2em;
  margin-bottom: 15px;
  color: #99ccff;
}

#main-content.thank-you p {
  margin: 10px 0;
  line-height: 1.6;
}

#main-content.thank-you a {
  color: #99ccff;
  text-decoration: underline;
}
/* Error Banner */
.error-banner {
  background: #660000;
  color: #fff;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
}
