.shinyBg {
  background: url('../../../../assets/img/seo_pages/past_papers/shinybg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 95vh;

  display: flex;
  align-items: center;
  justify-content: center;
}

.app_download_section {
  text-align: center;
}

.app_download_heading {
  color: var(--Neutral-Black, #1a1a1a);
  text-align: center;
  font-family: Inter;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.08rem;
}

.highlighted_text {
  background: linear-gradient(180deg, #00b812 0%, #016ba8 81.5%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-family: Inter;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.08rem;
}

.app_features_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .app_features_wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

.app_feature_card {
  padding: 0 1rem;
}

.feature_title {
  color: var(--Neutral-Black, #1a1a1a);
  text-align: center;

  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.0125rem;
  margin-bottom: 1rem;
}

.feature_description {
  color: var(--Neutral-Dark-Grey, #4f4f4f);
  text-align: center;

  /* Paragraph Small- 14px/Medium */
  font-family: Inter;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 1.225rem */
  letter-spacing: -0.00875rem;
}

.app_cta_wrapper {
  margin-top: 3rem;
}

.app_cta_button {
  display: inline-block;
  background-color: #fff;
  color: #111;
  padding: 1rem 3rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;

  color: var(--Neutral-Black, #1a1a1a);
  text-align: center;

  /* Button/Medium */
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25rem;
  /* 125% */
  letter-spacing: -0.005rem;
  cursor: pointer;
}



/* ================== RESPONSIVE FOR APP DOWNLOAD SECTION ===================== */

@media screen and (max-width: 768px) {
  .shinyBg {
    height: unset;
  }

  .app_download_heading,
  .highlighted_text {
    font-size: 2rem;
  }

  .app_features_wrapper {
    gap: 1.5rem;
  }

  .app_feature_card {
    padding: 0;
  }

  .feature_title {
    text-align: left;
  }

  .feature_description {
    text-align: left;
  }

  .app_cta_button {
    width: 100%;
  }
}

/* ================== REGISTRATION FLOW ===================== */

.tutoring-banner-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  padding: 7.5rem 0;
}

.sectionCustomPad{
  max-width: calc(1440px - 7.5rem);
}

.tutoring-banner-image {
  flex: 1;
}

.tutoring-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
}

.tutoring-banner-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tutoring-banner-title {
  /* color: var(--Neutral-Black, #1a1a1a); */
  font-family: Inter;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.025rem;

  background: linear-gradient(270deg, #008578 0%, #000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tutoring-banner-description {
  color: var(--Neutral-Dark-Grey, #4f4f4f);

  /* Paragraph Medium- 18px/Medium */
  font-family: Inter;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 1.575rem */
  letter-spacing: -0.01125rem;
  margin-bottom: 0.5rem;
  width: 78%;
  display: flex;
  gap: 0.75rem;
}

.tutoring-banner-title .break-word {
  display: inline;
}

.tutoring-banner-cta-btn {
  width: fit-content;
  margin-top: 1.5rem;
}

/* Desktop view - break after Tutoring */
@media screen and (min-width: 769px) {
  .tutoring-banner-title .break-word:nth-child(2)::after {
    content: "\A";
    white-space: pre;
  }
}

/* ================== RESPONSIVE FOR TUTORING REGISTRATION BANNER ===================== */

@media screen and (max-width: 768px) {
  .tutoring-banner-section {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem 1rem 5rem 1rem;
  }

  .tutoring-banner-title {
    font-family: Inter;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.0175rem;
  }

  .tutoring-banner-title .break-word:first-child::after {
    content: "\A";
    white-space: pre;
  }

  .tutoring-banner-content {
    gap: 1.25rem;
  }

  .tutoring-banner-description {
    width: 100%;
    font-size: 0.875rem;
    letter-spacing: -0.00875rem;
    font-weight: 500;
    display: flex;
    gap: 0.5rem;
  }

  .tutoring-banner-description-icon img {
    width: 0.9375rem;
    height: 1.125rem;
    aspect-ratio: 5 / 6;
  }

  .tutoring-banner-cta-btn {
    width: 100%;
    margin-top: 1rem;
  }
}