  @import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

  html {
    scroll-behavior: smooth;
  }

  * {
    margin: 0;
    padding: 0;
  }

  :root {
    --orange-color: #f64e3d;
    --black-color: #101828;
    --white-color: #fff;
  }

  body {
    font-family: "Inter", serif;
    background: #f3f3f3;
    color: var(--black-color);

    display: flex;
    flex-direction: column;
    gap: 30px;

    overflow-x: hidden;
  }

  ul,
  li {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

  .container {
    max-width: 1260px;
    padding: 0 60px;
    margin: 0 auto;
  }

  h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
  }

  h3 {
    text-align: center;
  }

  a {
    text-decoration: none;
    /* Remove underline from all links */
  }

  a .playlists-item h3 {
    color: black;
    text-decoration: none;
    /* Ensures no underline on <h3> */
  }

  a .playlists-item {
    text-decoration: none;
    /* Ensures the entire div is not underlined */
  }


  /* ================ banner start ================ */

  .banner {
    margin-top: 55px;
  }

  .banner-main {
    border-radius: var(--radius-md, 8px);
    box-shadow: 0px 4px 4px 0px rgba(179, 179, 179, 0.25);
    background: var(--white-color);
    padding: 20px;
  }

  .banner-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    width: 840px;
    text-align: center;
    margin: 0 auto;
  }

  .banner-content h1 {
    color: var(--black-color);
    font-size: 40.954px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .banner-content h1 span {
    color: var(--orange-color);
    font-weight: 700;
  }

  .banner-img img {
    width: 100%;
    border-radius: 15px;
    margin: 0 auto;
  }

  .banner-content h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 0;
  }

  .banner-content h2 span {
    color: var(--orange-color);
    font-weight: 700;
  }

  .banner-bg-content {
    display: flex;
    flex-direction: column;
    padding: 16px 32px;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #e8f8ff;
  }

  .banner-bg-content h3 {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .banner-bg-content h3:last-child {
    font-weight: 600;
  }

  .banner-bg-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
  }

  /* ================ banner end ================ */

  /* ================ playlists start ================ */

  .playlists-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }

  .playlists-item {
    border-radius: 8px;
    background: var(--white-color);
    box-shadow: 0px 4px 4px 0px rgba(179, 179, 179, 0.25);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .playlists-item img {
    width: 100%;
    border-radius: 8px;
  }

  .playlists-item h3 {
    font-size: 18px;
    font-weight: 700;
  }

  /* ================ playlists end ================ */

  /* ================ additional start ================ */

  .additional-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }

  .additional-item {
    border-radius: 20px;
    background: var(--white-color);
    padding: 30px;
  }

  .additional-item h3 {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 45px;
  }

  .additional-item h4 {
    color: #868686;
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: -0.3px;
  }

  .additional-item a {
    border-radius: 30px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 900;
    line-height: 13.5px;
    letter-spacing: -0.24px;
    margin: 20px 0;
    text-decoration: none;
  }

  .additional-item ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .additional-item ul li {
    color: #000;

    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
  }

  .additional-item ul li img {
    margin-right: 10px;
  }

  .most-popular {
    border: 2px solid #000;
    position: relative;
    padding-top: 40px;
  }

  .most-popular h5 {
    position: absolute;
    top: 0;
    left: 0;
    width: -webkit-fill-available;

    background: #000;
    padding: 8px;
    color: var(--white-color);
    border-radius: 15px 15px 0 0;
    text-align: center;
  }

  .most-popular h3 {
    padding-top: 20px;
  }

  /* ================ additional end ================ */

  /* ================ footer start ================ */
  .footer p {
    background: #000;
    text-align: center;
    padding: 20px 0;
    color: var(--white-color);

    font-size: 16px;
    font-weight: 700;
    line-height: normal;
  }

  /* ================ footer end ================ */

  /* ================ Media start ================ */

  @media (max-width: 1199.98px) {
    .container {
      max-width: 90%;
      padding: 0 30px;
    }

    .banner-content {
      width: 90%;
    }

    .banner-content h1 {
      font-size: 30px;
    }

    h2 {
      font-size: 28px;
      margin-bottom: 20px;
    }

    .banner-content h2 {
      font-size: 25px;
    }

    .playlists-content {
      gap: 10px;
    }

    .playlists-item {
      padding: 10px;
    }

    .playlists-item h3 {
      font-size: 16px;
    }

    .additional-content {
      gap: 20px;
    }

    .additional-item {
      padding: 15px;
    }

    .additional-item ul li {
      font-size: 14px;
    }

    .additional-item h3 {
      font-size: 20px;
      line-height: 37px;
    }

    .additional-item ul {
      gap: 10px;
    }

    .additional-item a {
      margin: 15px 0;
    }
  }

  /* mobile */
  @media (max-width: 667.98px) {
    .container {
      max-width: 100%;
      padding: 0 15px;
    }

    .banner {
      margin-top: 35px;
    }

    .banner-main {
      padding: 16px 0px;
    }

    .banner-content h1 {
      display: flex;
      flex-wrap: wrap;
      font-size: 24px;
      line-height: 20px;
    }

    .banner-content h1 img {
      height: 30px;
    }

    .banner-content h2 {
      font-size: 22px;
    }

    .banner-bg-content {
      padding: 15px;
    }

    .banner-bg-content h3:last-child {
      font-size: 15px;
    }

    .playlists-content {
      grid-template-columns: repeat(1, 1fr);
      gap: 30px;
    }

    .playlists-item {
      padding: 20px;
      text-align: center;
    }

    .playlists-item h3 {
      font-size: 18px;
    }

    .additional-content {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
    }
  }

  .faq_btn_wrp {
    display: flex;
    justify-content: space-between;
    /* Split between left and right */
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
  }

  .btn-left,
  .btn-right {
    display: flex;
    gap: 10px;
  }

  .faq_btn_wrp a button {
    border-radius: 30px;
    border: 1px solid transparent;
    padding: 0 30px;
    /* horizontal only */
    background-color: #000;
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: -0.24px;
    height: 46px;
    width: 119px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    text-align: center;
  }


  .faq_btn_wrp a button:hover {
    background-color: #cacad1;
    color: #000;
    border: 1px solid #000;
    transition: 1s;
  }

  /* Reusable button style */
  .courses-btn {
    border-radius: 30px;
    border: 1px solid transparent;
    padding: 0 30px;
    background-color: #000;
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: -0.24px;
    line-height: 13.5px;
    cursor: pointer;
    height: 46px;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .courses-btn:hover {
    background-color: #cacad1;
    color: #000;
    border: 1px solid #000;
    transition: 0.3s;
  }

  /* Dropdown styles */
  .courses-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .courses-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .courses-wrapper.show .courses-dropdown {
    display: flex;
  }

  #playlists-section {
    scroll-margin-top: 0;
  }


  /* ================ Media end ================ */