.contactPage {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #fff;
  color: #333;
        background-color: transparent;
    position: relative; /* important */
  z-index: 1;   
}

.contactHeading {
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #e00000;
}

.contactForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contactForm input,
.contactForm textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
}

.contactForm input:focus,
.contactForm textarea:focus {
  border-color: #2f80ed;
  outline: none;
}

.submitButton {
  background-color: #e00000;
  color: #fff;
  font-weight: bold;
  padding: 15px 0;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submitButton:hover {
  background-color: #a60000;
}

.consentText {
  font-size: 12px;
  color: #ffffff;
  margin-top: 20px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .contactHeading {
    font-size: 36px;
  }

  .contactForm input,
  .contactForm textarea {
    padding: 12px 15px;
  }

  .submitButton {
    font-size: 16px;
    padding: 12px 0;
  }
}
