body.Contact-Us-page {
  background-image: url("../images/backgrounds/contact.webp");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  color: #ff3c00;
  min-height: 200vh;
  font-family: 'Arial', sans-serif;
}

.contact-form {
  min-height: 200vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 60px 20px;
  box-sizing: border-box;
}

.contact-form form {
  width: 100%;
  max-width: 600px;
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid #ff3c00;
  border-radius: 10px;
  padding: 40px 20px;
  text-align: left;
  box-shadow: 0 0 15px #ff3c00;
  color: #ff3c00;
}

.contact-form h2 {
  text-align: center;
  color: #ff3c00;
  margin-bottom: 20px;
  text-shadow: 0 0 5px #ff3c00, 0 0 10px #ff0000;
}

.contact-form label {
  display: block;
  margin: 15px 0 5px;
  font-weight: bold;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 10px;
  background-color: rgba(20, 20, 20, 0.9);
  border: 1px solid #ff3c00;
  color: #ff3c00;
  border-radius: 5px;
  box-shadow: 0 0 10px #ff3c00;
}

.contact-form fieldset {
  border: none;
  margin-top: 20px;
}

.contact-form legend {
  font-weight: bold;
  margin-bottom: 10px;
  color: #ff3c00;
}

.contact-form input[type="radio"] {
  margin-right: 5px;
}

.radio-group {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-top: 10px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ff3c00;
}

.contact-form button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background-color: #ff3c00;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 0 10px #ff3c00;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #ff0000;
  color: white;
}
