.service-hero-form-2 {
  padding: 40px 20px 56px;
  background: #ffffff;
}

.service-hero-form-2 .service-hero-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px 52px;
  border: 1px solid rgba(35, 35, 37, 0.35);
  border-radius: 24px;
  background: #ffffff;
}

.service-hero-form-2 .service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: start;
}

.service-hero-form-2 .service-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-hero-form-2 .service-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 28px;
}

.service-hero-form-2 .service-breadcrumb-item,
.service-hero-form-2 .service-breadcrumb-parent,
.service-hero-form-2 .service-breadcrumb-current {
  font-family: 'Mulish', sans-serif;
  font-size: var(--section-eyebrow-size);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
}

.service-hero-form-2 .service-breadcrumb-separator {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.service-hero-form-2 .service-breadcrumb-separator svg {
  width: 100%;
  height: 100%;
}

.service-hero-form-2 .service-hero-heading {
  margin: 0 0 34px;
  max-width: 620px;
  font-family: 'Mulish', sans-serif;
  font-size: var(--hero-heading-size);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.service-hero-form-2 .service-hero-heading-line {
  display: block;
}

.service-hero-form-2 .service-hero-dark,
.service-hero-form-2 .service-hero-highlight {
  font-weight: 900;
}

.service-hero-form-2 .service-hero-dark {
  color: #17181d;
}

.service-hero-form-2 .service-hero-highlight {
  color: var(--color-primary);
}

.service-hero-form-2 .service-hero-description {
  max-width: 620px;
  margin: 0 0 36px;
  font-family: 'Mulish', sans-serif;
  font-size: var(--section-body-size);
  line-height: var(--section-body-line-height);
  color: rgba(35, 35, 37, 0.82);
}

.service-hero-form-2 .service-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  min-height: 72px;
  padding: 18px 32px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(120, 104, 230, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-hero-form-2 .service-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(120, 104, 230, 0.34);
}

.service-hero-form-2 .service-form-card {
  padding: 34px 32px 38px;
  border-radius: 20px;
  background: var(--color-primary);
  box-shadow: 0 14px 30px rgba(120, 104, 230, 0.28);
}

.service-hero-form-2 .service-page-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-hero-form-2 .service-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-hero-form-2 .service-form-field label {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
}

.service-hero-form-2 .service-form-input,
.service-hero-form-2 .service-form-textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #ffffff;
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  outline: none;
}

.service-hero-form-2 .service-form-input:focus,
.service-hero-form-2 .service-form-textarea:focus {
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.service-hero-form-2 .service-form-textarea {
  min-height: 96px;
  resize: vertical;
}

.service-hero-form-2 .service-form-submit {
  align-self: center;
  min-width: 100%;
  margin-top: 30px;
  padding: 18px 24px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-hero-form-2 .service-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.24);
}

.service-page-content {
  padding: 0 24px 72px;
}

.service-page-content__container {
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Mulish', sans-serif;
  color: rgba(35, 35, 37, 0.85);
}

@media (max-width: 1279px) {
  .service-hero-form-2 .service-hero-shell {
    padding: 40px 28px 44px;
  }

  .service-hero-form-2 .service-hero-grid {
    gap: 36px;
  }

  .service-hero-form-2 .service-form-card {
    padding: 32px 28px 36px;
  }

  .service-hero-form-2 .service-hero-cta {
    min-width: 280px;
    min-height: 64px;
    font-size: 16px;
  }
}

@media (max-width: 1023px) {
  .service-hero-form-2 {
    padding: 30px 20px 44px;
  }

  .service-hero-form-2 .service-hero-shell {
    padding: 34px 24px 38px;
  }

  .service-hero-form-2 .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-hero-form-2 .service-hero-heading {
    max-width: none;
    font-size: var(--hero-heading-size-tablet);
  }

  .service-hero-form-2 .service-hero-description {
    max-width: none;
  }

  .service-hero-form-2 .service-form-card {
    max-width: 720px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .service-hero-form-2 .service-hero-shell {
    padding: 28px 18px 30px;
    border-radius: 20px;
  }

  .service-hero-form-2 .service-breadcrumb {
    gap: 10px;
    margin-bottom: 26px;
  }

  .service-hero-form-2 .service-breadcrumb-item,
  .service-hero-form-2 .service-breadcrumb-parent,
  .service-hero-form-2 .service-breadcrumb-current {
    font-size: 13px;
  }

  .service-hero-form-2 .service-hero-heading {
    margin-bottom: 22px;
    font-size: var(--hero-heading-size-mobile);
    line-height: 1.05;
  }

  .service-hero-form-2 .service-hero-description {
    margin-bottom: 28px;
    font-size: 16px;
  }

  .service-hero-form-2 .service-hero-cta {
    min-width: 100%;
    width: 100%;
    min-height: 60px;
    padding: 16px 24px;
    font-size: 16px;
    text-align: center;
  }

  .service-hero-form-2 .service-form-card {
    padding: 30px 22px 34px;
  }

  .service-hero-form-2 .service-form-field label,
  .service-hero-form-2 .service-form-input,
  .service-hero-form-2 .service-form-textarea {
    font-size: 15px;
  }

  .service-hero-form-2 .service-form-submit {
    font-size: 16px;
  }
}
