.contact-section {
  font-family: 'Courier Prime', monospace;
  color: #fff;
}

/* Heading Typography */
.contact-heading {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 5px;
}

.contact-subheading {
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: #fff;
}

.contact-para {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  font-weight: 400;
  max-width: 500px;
}
.contact-para a {
  color: #29A71A;
  text-decoration: none;
  font-weight: 500;
}

/* Form Styling */
.unit-vii-form .form-control, 
.unit-vii-form .form-select {
  background-color: #fff;
  border: none;
  border-radius: 0;
  padding: 15px 20px;
  font-family: 'Courier Prime', monospace;
  color: #000;
  font-size: 0.9rem;
}

/* Custom Select Arrow color */
.unit-vii-form .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23EE2E3C' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.unit-vii-form .form-control::placeholder {
  color: #777;
}

/* Red Submit Button */
.btn-red-submit {
  background-color: #EE2E3C;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 12px 30px;
  font-weight: 400;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #fff, 0 0 30px #fff;
  transition: 0.3s ease;
}

.btn-red-submit:hover {
  background-color: #ff3b4a;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(238, 46, 60, 0.4);
}

/* Responsive Scaling */
@media (max-width: 991px) {
  .contact-heading {
    font-size: 36px;
    text-align: center;
  }
  .contact-text-area {
    text-align: center;
    margin-bottom: 40px;
  }
  .contact-para {
    margin: 0 auto;
  }
}
@media screen and (max-width: 576px) {
  .contact-heading {
    font-size: 30px !important;
    line-height: 1.2;
    letter-spacing: 0 !important;
  }
}