/* Header background image and overlay */
.header {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Grey overlay with 60% opacity */
  z-index: 2;
}

.header-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

/* Adjust for logos and header text */
.logo {
  max-width: 150px;
}

/* Main content layout */
.main-content {
  padding-top: 50px;
}

/* Responsive form sections */
.form-section {
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .header {
    height: 300px;
  }

  .header-content h1 {
    font-size: 1.75rem;
  }

  .header-content p {
    font-size: 1.1rem;
  }

  .form-section {
    padding: 20px;
  }

  .logo {
    max-width: 100px;
  }

  .btn {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
}
