/* contactUs */
#contactUs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 50px 30px;
    background-image: linear-gradient(to top, rgb(255, 213, 231), white);
}
    .formContainer{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 30px;
      width: 60%;
      padding: 20px 0;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      background-image: linear-gradient(to top, rgb(255, 213, 231), white);
    }

    @media (max-width: 1300px) {
    .formContainer {
        width: 100%;
     }
   }

    .formContainer h2 {
      text-align: center;
      color: rgb(101, 12, 50);
      font-family: "Almog", sans-serif;
      font-weight: 800;
      font-size: clamp(16px, 2.4vw, 20px);
    }

    #leadForm {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      text-align: center;
      gap: 20px;
      width: 100%;
    }

    @media (max-width: 1300px) {
    #leadForm {
        gap: 10px;
     }
   }

    input, textarea  {
      padding: 15px 15px;
      margin-bottom: 5px;
      border: none;
      text-align: center;
      border-radius: 10px;
      font-size: 1rem;
      font-family: "Assistant", sans-serif;
      font-weight: 400;
      font-size: clamp(16px, 3vw, 16px);
      transition: border-color 0.3s;
      width: clamp(200px, 30%, 350px);
      box-sizing: border-box;
      box-shadow: 0 4px 8px rgba(61, 0, 40, 0.1);
      background-color: rgb(248, 248, 248);
    }
    textarea {
      margin-bottom: 0;
    }

    input, textarea:focus {
      border-color: #007bff;
      outline: none;
    }

    @media (max-width: 1300px) {
    input, textarea {
         width: 80%;
     }
   }

#leadForm .privacy-row{
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

#leadForm .privacy-row input[type="checkbox"]{
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex-shrink: 0;
  accent-color: #01cb4b;
}

#leadForm .privacy-row label{
  line-height: 1.5;
  cursor: pointer;
  font-family: "Assistant", sans-serif;
  font-weight: 400;
  color: rgb(85, 85, 85);
}

#leadForm .privacy-row a{
  text-decoration: underline;
  color: #740030;
}

#leadForm a:visited{
  color: #740030;
}

    #sendBtn {
      padding: 15px 20px;
      /* margin-bottom: 1.00rem; */
      background-image: linear-gradient(to right, rgb(237, 30, 121), rgb(158, 0, 93));
      color: white;
      border: none;
      border-radius: 10px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s;
      width: 30%;
      font-family: "Assistant", sans-serif;
      font-weight: 900;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    @media (max-width: 1300px) {
    #sendBtn {
         width: 70%;
         margin-top: 20px;
     }
   }

    #sendBtn:hover {
      background-image: linear-gradient(to right, rgb(237, 30, 121), rgb(237, 30, 121));
    }

    #responseMessage {
      color: rgb(92, 92, 92);
      font-family: 'Assistant', sans-serif;
      font-weight: 400;
      font-size: 20px;
    }