/* Fix CTA title accent - add black background with yellow text and red shadow */
.cta-title-accent {
  background: var(--black) !important;
  color: var(--yellow) !important;
  padding: 0.8rem 1.5rem !important;
  border: 5px solid var(--black) !important;
  box-shadow: 6px 6px 0 var(--red) !important;
  -webkit-text-stroke: 0 !important;
  text-stroke: 0 !important;
  text-shadow: none !important;
  display: inline-block;
  bottom: -3rem !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .cta-title-accent {
    padding: 0.6rem 1.2rem !important;
    border: 4px solid var(--black) !important;
    box-shadow: 5px 5px 0 var(--red) !important;
  }
}

@media (max-width: 480px) {
  .cta-title-accent {
    padding: 0.5rem 1rem !important;
    border: 3px solid var(--black) !important;
    box-shadow: 4px 4px 0 var(--red) !important;
  }
}

/* Move first step down */
.cta-steps-side .cta-step:first-child {
  margin-top: 3rem !important;
}

@media (max-width: 768px) {
  .cta-steps-side .cta-step:first-child {
    margin-top: 2rem !important;
  }
}

@media (max-width: 480px) {
  .cta-steps-side .cta-step:first-child {
    margin-top: 1.5rem !important;
  }
}

/* Align hero title text to the right edge within its container */
.hero-title {
  text-align: right !important;
  padding-right: 35% !important;
}

.title-line.offset {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (max-width: 1200px) {
  .hero-title {
    padding-right: 30% !important;
  }
}

@media (max-width: 768px) {
  .hero-title {
    text-align: right !important;
    padding-right: 15% !important;
  }

  .title-line.offset {
    margin-left: 0 !important;
  }

  .title-line.large {
    font-size: inherit !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    text-align: right !important;
    padding-right: 5% !important;
  }

  .title-line.offset {
    margin-left: 0 !important;
  }

  .title-line.large {
    font-size: inherit !important;
  }
}

/* Center logo on mobile */
@media (max-width: 768px) {
  .logo {
    position: static !important;
    transform: rotate(-3deg) !important;
    text-align: center !important;
    display: block !important;
    margin: 0 auto !important;
    width: fit-content !important;
  }
}

@media (max-width: 480px) {
  .logo {
    position: static !important;
    transform: rotate(-3deg) !important;
    text-align: center !important;
    display: block !important;
    margin: 0 auto !important;
    width: fit-content !important;
  }
}

/* Fix statement-box overflow on mobile */
@media (max-width: 768px) {
  .statement-box {
    display: block !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
    width: fit-content !important;
    padding-left: 1.5rem !important;
    padding-right: 3rem !important;
  }

  .statement-box h2 {
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}

@media (max-width: 480px) {
  .statement-box {
    display: block !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    transform: rotate(0deg) !important;
    margin: 0 auto !important;
    width: fit-content !important;
    padding-left: 1rem !important;
    padding-right: 3rem !important;
  }

  .statement-box h2 {
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}
