html, body {
    overflow-x: hidden;
}

.rif-container {
  width: 100%;
  background-color: var(--primary-silver);
  padding: 3.5rem 1.5rem;
  overflow: hidden;
  box-sizing: border-box;
}

.request-info-form {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.request-info-form__eyebrow {
  display: inline-block;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.request-info-form__title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin: 0 0 2rem !important;
  line-height: 1.2;
}

.request-info-form__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-red);
  margin: 0 auto;
  margin-top: 0.75rem;
}

.request-info-form__form-wrapper {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 40, 85, 0.13);
  overflow: hidden;
  text-align: left;
  max-width: 100%;
}

.request-info-form__form-wrapper iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: none;
}

@media (max-width: 768px) {
  .rif-container {
    padding: 2rem 1rem;
  }

  .request-info-form__title {
    font-size: 1.75rem;
  }

  .request-info-form__form-wrapper {
    border-radius: 6px;
  }
}
