.header-banner {
  position: relative;
  width: 100%;
  min-height: 350px; 
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff; 
  text-align: center;
}


.header-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 1;
}

.header-banner .header-banner-text {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.header-banner .header-banner-text h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 768px) {
  .header-banner {
    min-height: 25vh;
  }
  .header-banner .header-banner-text h1 {
    font-size: 2rem;
  }
}

.contact-container {
      background: #fff;
      max-width: 600px;
      margin: 40px auto;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.12);
      padding: 24px 24px 0 24px;
      box-sizing: border-box;
      position: relative;
    }
      .contact-container h2 {
      margin: 0 0 12px 0;
      font-size: 20px;
      font-weight: normal;
    }
    .form-note {
      color: #6b3e26;
      margin-bottom: 18px;
      font-size: 25px;
      text-align:center;
      font-weight:600;
    }
    .contact-form label {
      display: block;
      margin-bottom: 5px;
      font-size: 15px;
    }
     .contact-form{
      padding-bottom:20px;

}
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
      width: 100%;
      padding: 8px 10px;
      margin-bottom: 16px;
      font-size: 15px;
      border: 1px solid #dadada;
      border-radius: 4px;
      box-sizing: border-box;
      outline: none;
      resize: none;
      transition: border 0.2s;
    }
    .contact-form input[type="text"]:focus,
    .contact-form input[type="email"]:focus,
    .contact-form textarea:focus {
      border: 1.5px solid #6eba92;
    }
    .contact-form textarea {
      height: 100px;
    }
    .required {
      color: #c00;
    }
    .button-row {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }
    .send-btn {
      border: none;
      background: #43a047;
      color: #fff;
      font-size: 16px;
      padding: 9px 25px;
      border-radius: 4px;
      cursor: pointer;
      margin-right: 12px;
      transition: background 0.2s;
    }
    .send-btn:hover {
      background: #35813d;
    }
    .cancel-btn {
      border: none;
      background: #ececec;
      color: #333;
      font-size: 16px;
      padding: 9px 25px;
      border-radius: 4px;
      cursor: pointer;
      margin-left: auto;
    }
    .recaptcha-text {
      font-size: 13px;
      color: #727272;
      margin-bottom: 20px;
      margin-top: 10px;
    }
    .recaptcha-text a {
      color: #3b6ab4;
      text-decoration: underline;
    }
    @media (max-width: 650px) {
      .contact-container {
        padding: 10px 2vw;
        width: 96vw;
      }
    }



.paragraph-section{
  padding:30px;
  text-align:center;
  line-height:22px;
}

.cancel-btn:hover{
 background-color:#964b29;
 color:#fff;
}