.container-form-content {
  .section-header {
    padding-top: 130px;
    margin-bottom: 60px;

    @media screen and (max-width: 1700px) {
      padding-top: 150px;
    }

    @media screen and (max-width: 1200px) {
      padding-top: 200px;
    }

    @media screen and (max-width: 992px) {
      padding-top: 100px;
    }

    @media screen and (max-width: 768px) {
      margin-bottom: 30px;
    }
  }

  h1,
  h2 {
    font-size: 48px;
    letter-spacing: -0.01em;
    margin-bottom: 30px;
    font-weight: 800;
  }

  .content {
    p {
      font-size: 18px;
      line-height: 1.5em;
      letter-spacing: 0;
      font-weight: 400;
      margin: 0 !important;
    }
  }

  .form-heading {
    font-size: 24px;
    letter-spacing: -0.01em;
    line-height: 1.4em;
    font-weight: 800;
    margin-bottom: 20px;
  }

  .container-form {
    .form-group {
      textarea,
      input {
        font-size: 16px;
        letter-spacing: -0.01em;
        line-height: 1.4em;
        font-weight: 400;
        color: #032157;
        border: solid 2px #032157;
        border-radius: 5px;
        height: 45px;

        &::placeholder,
        &::-webkit-input-placeholder,
        &:placeholder-shown {
          font-style: italic;
          color: #032157;
        }
      }
    }

    .field-text {
      display: flex;
      flex-direction: column;
      height: 100%;

      @media screen and (max-width: 768px) {
        margin-bottom: 10px;
      }

      textarea {
        flex: 1;
      }
    }

    .field-checkbox {
      margin-top: 10px;

      @media screen and (max-width: 768px) {
        margin-top: 0px;
      }

      label {
        font-size: 11.5px;
        letter-spacing: -0.01em;
        line-height: 1.2em;
        font-weight: 400;
        font-style: italic;
      }
    }
  }

  .container-bottom {
    display: flex;
    gap: 20px;

    @media screen and (max-width: 768px) {
      flex-direction: column;
      gap: 10px;
    }

    span {
      font-size: 16px;
      letter-spacing: -0.01em;
      font-weight: 400;
      font-style: italic;
    }

    button {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      width: fit-content;
      padding: 8px 25px;
      background-color: #032157;
      color: #fff;
      border: none;
      font-size: 16px;
      letter-spacing: -0.01em;
      font-weight: 600;
      transition: opacity 0.3s ease;

      &:hover {
        opacity: 0.7;
      }
    }
  }
}
