.section {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 35rem;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
  margin-inline: auto;
  position: relative;
}

.section__heading {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.main-section__text {
  margin-top: 1rem;
  width: 100%;
  max-width: 35rem;
}

.main-section__details {
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 0.5rem;
  opacity: 0.5;
}

.main-section__buttons {
  margin-top: 6.25rem;
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 1rem;
}

.main-section__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 3rem;
  padding-block: 1.25rem;
  font-size: 0.875rem;
  height: 3.75rem;
}

.faq-section__questions {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 35rem;
  margin-top: 2.5rem;
  gap: 0.75rem;
}

.faq-section__question-title {
  font-weight: 600;
  font-size: 16px;
}

.faq-section__question-description {
  margin-top: 0.5rem;
  font-size: 14px;
}

.faq-section__question-spacer {
  height: 0;
  border-top-width: 1px;
  border-color: #fff;
  opacity: 0.5;
  margin-top: 0.75rem;
}

.wsu-section__cards {
  display: grid;
  column-gap: 0.5rem;
  row-gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2.5rem;
}

.wsu-section__card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.75rem;
}

.wsu-section__card--last {
  grid-column: span 2 / span 2;
}

.wsu-section__card-label {
  position: absolute;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  width: 9rem;
  left: 1.625rem;
  top: -0.625rem;
}

.wsu-section__card-caption {
  position: absolute;
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 0.75rem;
  left: 0.625rem;
  top: 2.25rem;
  width: 11rem;
  height: 2.5rem;
}

.wsu-section__card-number {
  position: absolute;
  rotate: 5deg;
  bottom: 0;
  right: 0.25rem;
  color: white;
  font-size: 3.75rem;
}

.premium-section__support-description {
  margin-top: 0.75rem;
  text-align: center;
}

.premium-section__features {
  display: grid;
  column-gap: 0.375rem;
  row-gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.75rem;
}

.premium-section__feature {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
}

.premium-section__feature--last {
  grid-column: span 2 / span 2;
}

.premium-section__feature-label {
  position: absolute;
  text-align: center;
  font-weight: 600;
  width: 9.5rem;
  left: 1.2rem;
  top: -0.3rem;
}

.premium-section__feature-number {
  position: absolute;
  rotate: 5deg;
  bottom: -0.5rem;
  right: 0;
  color: white;
  font-size: 3.75rem;
}

.premium-section__buttons-container {
  gap: 1rem;
  justify-content: center;
  width: 100%;
  display: flex;
  margin-top: 2.25rem;
  align-items: stretch;
  flex-direction: row;
}

.premium-section__button {
  border-radius: 1.5rem;
  cursor: pointer;
  width: 191px;
  color: inherit;
}

.premium-section__left-button {
  font-size: 16px;
  padding-block: 1.25rem;
  padding-inline: 2.75rem;
  background-color: #fff;
  height: 3.75rem;
}

.premium-section__right-button {
  padding-block: 0.75rem;
  padding-inline: 2.25rem;
  background-color: #023c72;
  color: #fff;
  position: relative;
}

.premium-section__discount-number {
  position: absolute;
  color: #fdb401;
  font-size: 35px;
  rotate: 14deg;
  bottom: 40px;
  right: -16px;
  font-weight: 400;
}

.hw-section__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: -1rem;
  max-width: 25rem;
}

.hw-section__step {
  width: 100%;
  display: flex;
  margin-top: 2rem;
  align-items: start;
  flex-direction: row-reverse;
}

.hw-section__step--even {
  align-items: end;
  flex-direction: row;
}

.hw-section__step-info {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 600;
}

.hw-section__step-number {
  position: absolute;
  rotate: 5deg;
  color: #fff;
  bottom: -1rem;
  font-size: 3.75rem;
}

.hw-section__step-number--even {
  right: -0.5rem;
}

.hw-section__step-number--non-even {
  left: -0.5rem;
}

.ideas-section__container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
}

.ideas-section__carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ideas-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ideas-section__image-container {
  position: relative;
  height: 216px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 1rem;
}

.ideas-section__image-container--center {
  height: 276px;
  width: 191px;
  z-index: 5;
}
.ideas-section__image-container--left {
  margin-right: -2.5rem;
}
.ideas-section__image-container--right {
  margin-left: -2.5rem;
}

.ideas-section__image-button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.75rem;
  width: 3.75rem;
  font-size: 2.25rem;
  padding: 0.5rem;
}

.ideas-section__image-caption {
  width: 100%;
  position: absolute;
  bottom: 0.5rem;
  text-align: center;
  z-index: 6;
  font-weight: 600;
  color: white;
  text-shadow: 0 0 8px #000;
}

.ideas-section__image-button--left {
  margin-left: -1rem;
  scale: -1 1;
}

.ideas-section__image-button--right {
  margin-right: -1rem;
}

.contact-section__container {
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  backdrop-filter: blur(24px);
  background: rgba(255, 255, 255, 0.01);
}

.contact-section__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 1rem;
}

.contact-section__input {
  border-radius: 2rem;
  width: 100%;
  color: white;
  padding-inline: 1rem;
  padding-block: 0.75rem;
  font-size: 13px;
  background-color: #023c7280;
}

.contact-section__input::placeholder {
  color: white;
  opacity: 0.5;
}

.contact-section__button {
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding-inline: 3rem;
  padding-block: 0.75rem;
}

.contact-section__links {
  display: flex;
  gap: 0.75rem;
}

.page-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  width: 100vw;
  z-index: -1;
}
