.contact-box-get-the-guide {
  width: 100%;
  height: fit-content;
  opacity: 1; 
  background-color: #000000; 
  color: #FFFFFF; 
  box-sizing: border-box;
  border-width: 2px;
  border-style: solid;
  border-color:#181a20; 
  align-items: flex-start; 
  padding: 0px; /* Adds padding to the entire box */
  gap: 10px; /* Adds spacing between child elements */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 20px;
}

.contact-eyebrow-cta-box {
  font-family: TWK Lausanne,sans-serif;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #2ba3ff;
  margin: 25px 0;
  padding-left:20px;
}

/* Text styling */
.contact-text p {
  font-family: 'TWK Lausanne', sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 33.9px;
  color: #FFFFFF;
  padding: 0 20px;
  margin:0px;
}

.submitted-message {
  border-radius: 20px 0 20px 20px;
  font-size: 2.5rem;
  margin: 80px 20px 30px;
  padding: 30px 40px;
  width: 60%;
}

.content-container {
  display: flex;
  flex-direction: row; /* Arrange children in a row */
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap; /* Prevent wrapping */
  width: 100%;
}

.form-container-get-guide {
  flex: 1;
  min-width: 300px; /* Adjust as needed for a comfortable minimum size */
}

.text-cta-box-get-guide {
  flex: 1; 
  display: flex;
  flex-direction: column;
  width: 100%;
padding: 20px;
}

.contact-box-get-the-guide form .form-title,
.contact-box-get-the-guide .form-title {
  display:none;
}

.contact-box-get-the-guide form {
  border-radius: 0px;
  background-color: transparent;
  padding: 20px 20px 0 20px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 2%;
  flex-direction: column;
}

.contact-box-get-the-guide form .hs_person_name .hs-input,
.contact-box-get-the-guide form .hs_email .hs-input,
.contact-box-get-the-guide form .hs_message .hs-input {
  background-color: #FFFFFF1A !important;
  border-radius: 4px;
  border: 1px solid #FFFFFF;
}

.contact-box-get-the-guide form .hs-input:hover,
.contact-box-get-the-guide form .hs-input:focus {
  border-color: transparent;
  outline-color: transparent;
}

.contact-box-get-the-guide form .hs_person_name,
.contact-box-get-the-guide form .hs_email {
  width: 100%;
}

.contact-box-get-the-guide form .hs_message,
.contact-box-get-the-guide form .hs_submit {
  width: 100%;
}

.contact-box-get-the-guide form .actions {
  display: flex;
  justify-content: flex-start;
}

.contact-box-get-the-guide .image-text-container {
  display: none;
}

/* Button styles */
.contact-box-get-the-guide form .hs-button.primary.large {
  color: black;
  background: linear-gradient(180.78deg, #48B0FF 0.33%, #2BA3FF 98.99%);
  width: 200px; /* Fixed width */
  height: 50px; /* Fixed height */
  padding: 11px 20px 12px 24px;
  border-radius: 0px 30px 30px 30px;
  box-shadow: 0px 4px 4px rgba(8, 25, 60, 0.2);
  opacity: 1; /* Set to 1 to make it visible */
  border: none;
  transition: all 0.3s ease; /* Smooth transition for all properties */
}

/* Pressed state */
.contact-box-get-the-guide form .hs-button.primary.large:active {
  color: white;
  background: #0063AE;
  border: 2px solid #2BA3FF;
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);

}

  /* Hover state */
  .contact-box-get-the-guide form .hs-button.primary.large:hover {
    background: linear-gradient(180.78deg, #7AC6FF 0.33%, #48B0FF 98.99%);
    color: white;
    border: none;
  }

  .image-text-container {
    width: inherit; /* Ensure it scales with the container */
    height: fit-content; /* Allow height to adjust dynamically */
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .image-text-container img {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  /* Hide the contact-box on mobile */
  @media (max-width: 768px) {
    .contact-box-get-the-guide {
      flex-direction: column;
      align-items: center;
      background-image: none !important;
    }

    .contact-eyebrow, .contact-text p {
      padding-left: 0px;
    }

    .submitted-message {
      width: 90%;
    }
    .contact-box-get-the-guide .text-cta-box {
      margin: 0 0 30px 0;
      width: 100%;
    }

    .contact-box-get-the-guide .form-container-get-guide {
      margin-right: 0;
      margin-bottom: 20px;
    }

    .contact-box-get-the-guide form {
      padding: 10px 0px;
      width: 100%;
    }

    .contact-box-get-the-guide form .hs_person_name,
    .contact-box-get-the-guide form .hs_email {
      width: 100%;
    }

    .contact-box-get-the-guide .image-text-container {
      display: block;
    }

    .contact-box-get-the-guide .image-text-container img {
      width: 100%;
      display: flex;
      border-radius: 20px;
      margin-top: 100px;
    }
  }
}