.two-column-form {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  position: relative;
}
.two-column-form .row {
  display: flex;
  flex-wrap: nowrap;
align-items:center;
  justify-content: center;
  gap: 80px; 
}


.two-column-form .text-col {
  max-width:552px;
}

.anchor-link {
  position: relative;
  top: -180px; /* lifts it 60px above where it naturally sits */
  height: 0; /* make it invisible but still “scrollable” */
  visibility: hidden;
}
/* Left column - sticky text */
.two-column-form .text-col.sticky {
    flex-basis: 50%;
    align-self: flex-start;
    position: sticky;
    top: 200px;
}

/* Right column - scrolls normally */
.two-column-form .form-column {
  max-width:680px;
  background: #f9f9f9;
  padding: 50px;
  border-radius: 5px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

/* Eyebrow + text */
.two-column-form .eyebrow {
  border: 0;
  color: #232323;
}

.two-column-form .wysiwyg-content {
  max-width: 640px;
  line-height: 1.6;
}

/* Textarea + input styling */
.two-column-form textarea {
  padding: 8px 16px;
  background: #EFEFEF;
  border: 0;
  border-radius: 5px;
      color: var(--Text, #232323);
    font-family: Lora;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
}

/* Form styling */
.form-column h3.form-title {
  color: var(--Text, #232323);
  font-family: Poppins;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 50px;
}

.form-embed input,
.form-embed select {
  width: 100%;
  border-radius: 5px;
  background: var(--Neutral-very-light, #EFEFEF);
  border: 0;
  padding: 8px 16px;
  color: var(--Text, #232323);
  font-family: Lora;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}

.form-embed input[type="submit"] {
  width: fit-content;
  border-radius: 8px;
  background: #D7D7D7;
  padding: 16px;
}

.form-embed input[type="submit"]:hover {
  background: var(--Neutral-very-light, #EFEFEF);
}

/* Responsive behavior */
@media (max-width: 1050px) {
   .two-column-form .text-col.sticky {
    position: static !important;
    top: auto !important;
    height: auto !important;
  }

  .two-column-form .row {
    flex-wrap: wrap;
	  align-items:flex-start!important;
    justify-content: flex-start;
    gap: 20px;
}

  .two-column-form {
    flex-direction: column;
    gap: 20px;
    padding: 30px 0;
  }
  .two-column-form .text-col,
  .two-column-form .form-column {
    flex: 1 1 100%;
    position: static;
    width: 100%;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }
}
@media (max-width:767px) {
  .anchor-link {
  top:40px;
}
}