section {
  width: 60%;
  margin: auto;
  padding: 200px 0 100px; 
  display: block;
}
h3 {
  text-align: left;
  font-size: 22px;
  padding-bottom: 10px !important;
  padding-top: 40px;
  font-weight: 700;
}
h1 {
  font-size: 43px;
  text-align: center;
}
p {
  padding-bottom: 10px;
}
.privacy {
  background: linear-gradient(180deg, #f2f9ff 0%, rgba(242, 249, 255, 0) 100%);
}
/* -------- Section Two ---------- */

.section-two {
  display: block;
  text-align: center;
  padding-bottom: 140px;
  width: 70%;
  padding-top: 100px;
}

.section-two form {
  display: flex;
  justify-content: space-evenly;
}

.section-two form div {
  display: flex;
  flex-direction: column;
  width: 40%;
}

input,
textarea {
  font-family: "Galano Medium";
  color: #727272;
  font-size: 16px;
  border: 0.5px solid #727272;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  margin: 10px 0;
}

textarea {
  margin-top: 25px;
  width: unset;
}

.section-two form div:nth-of-type(2) .button {
  background: #fce9a9;
  border: 2px solid #fce9a9;
  color: white;
  margin-top: unset;
}

.section-two form div:nth-of-type(2) .button:hover {
  color: #fce9a9;
  background: white;
  border: 2px solid #fce9a9;
}

form span {
  text-align: left;
}

/* ------- RESPONSIVE --------*/

@media screen and (max-width: 768px) {
  section {
    width: 90%;
  }
  h1 {
    font-size: 30px;
    line-height: 30px;
  }
  h3 {
    font-size: 18px !important;
    line-height: 18px;
  }
  .section-two {
    width: 90%;
  }
  .section-two form {
    flex-direction: column;
  }
  .section-two form div {
    width: 100%;
  }
  input,
  textarea {
    padding: unset;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  ::placeholder {
    padding-left: 10px;
  }
}
