body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}
.contact-form-container {
  background-color: var(--bs-medium-grey);
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  max-width: 90%;
  width: 100%;
}
.form-control {
  border: 1px solid #d1d5db;
  border-radius: 0.9rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  background-color: white;
}
.form-label {
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  display: block;
}
.btn-submit {
  transition: all 0.3s ease;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 138, 0, 0.18);
}

@media (max-width: 576px) {
  .contact-form-container {
    max-width: 100%;
    padding: 1.5rem 1rem;
    margin: 0;
  }
}