/* ─── Contact Page Styling ─────────────────────────────── */
.page-header {
  text-align: center;
  padding: 20px 0;
  background-color: var(--primary-color, #2c7be5);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-container {
  max-width: 600px;
  margin: 40px auto;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-container h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--primary-color, #2c7be5);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color, #2c7be5);
  box-shadow: 0 0 5px rgba(44, 123, 229, 0.3);
}

.btn-primary {
  display: inline-block;
  width: 100%;
  background-color: #00BCD5;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.btn-primary:hover {
  background-color: var(--primary-hover, #1a5bb8);
}

.status-message {
  text-align: center;
  margin-top: 15px;
  font-weight: 500;
}
