/* Contact Page Layout */
.contact-page header {
  text-align: center;
  margin-top: 2rem;
}

.contact-form {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border: 1px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.25rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

.contact-form button {
  background: #FFD700;
  color: #333;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.contact-form button:hover {
  background: #e6c200;
}

/* Center nav buttons */
.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

/* Fix pill button text color */
.pill-button-gold {
  color: #FFD700 !important;
}

.pill-button-gold:hover {
  color: #333 !important;
  background: #FFD700;
}
/* Center the Contact page header */
.contact-page header {
  text-align: center !important;
  margin: 0 auto !important;
  width: 100%;
}

/* Optional: tighten spacing */
.contact-page header h1,
.contact-page header p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
/* Force the Contact page header to behave like a normal block */
.contact-page header {
  display: block !important;
  text-align: center !important;
  margin: 0 auto !important;
  width: 100%;
}

/* Ensure the h1 and p stack vertically and center */
.contact-page header h1,
.contact-page header p {
  display: block !important;
  float: none !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}


