 /* ───────────────────────────────────────────
       SECTION
    ─────────────────────────────────────────── */
    .expect-section {
      width: 100%;
      background: url("/template/71b0727d/images/here-demo-bg.png") no-repeat;
      background-position: bottom;
      background-size: cover;
    }

    .expect-section__inner {
      max-width: 1260px;
      margin: 0 auto;
      padding: 160px 30px 150px;
      text-align: center;
    }

    /* ───────────────────────────────────────────
       HEADING
    ─────────────────────────────────────────── */
    .expect-section__heading-wrapper {
      margin-bottom: 20px;
    }

    .expect-section__heading {
      color: #000;
      padding: 0;
      margin: 0;
      font-family: Lufga;
      font-weight: 600;
      font-size: 40px;
      line-height: 100%;
      letter-spacing: 0;
      text-align: center;
    }

    /* ───────────────────────────────────────────
       SUBTITLE
    ─────────────────────────────────────────── */
    .expect-section__desc-wrapper {
      margin-bottom: 35px;
    }

    .expect-section__desc-wrapper p {
      color: rgba(0, 0, 0, 0.6);
      padding: 0;
      margin: 0;
      font-family: Lufga;
      font-weight: 400;
      font-size: 16px;
      line-height: 31px;
      letter-spacing: 0.01em;
      text-align: center;
    }

    /* ───────────────────────────────────────────
       GRID — 3 columns
    ─────────────────────────────────────────── */
    .expect-section__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 60px;
      text-align: left;
    }

    /* ───────────────────────────────────────────
       CARD
    ─────────────────────────────────────────── */
    .expect-card {
      /*! background: #fff; */
      border-radius: 16px;
      /*! border: 1px solid #ebebeb; */
      /*! box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04); */
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    /* Image */
    .expect-card__image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      background: #f5f5f5;
      border-radius: 10px;
    }

    .expect-card__image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      border-radius: 10px;
    }

    /* Content */
    .expect-card__content {
      flex: 1;
      padding: 0;
      display: flex;
      flex-direction: column;
    }

    /* Title */
    .expect-card__title {
      color: #000;
      margin: 30px 0 15px;
      padding: 0;
      font-family: Lufga;
      font-weight: 500;
      font-size: 20px;
      line-height: 30px;
      letter-spacing: 0;
    }

    /* Description */
    .expect-card__desc-wrapper {
      flex: 1;
      margin-bottom: 20px;
    }

    .expect-card__desc-wrapper p {
      color: #000;
      padding: 0;
      margin: 0 0 15px;
      font-family: Lufga;
      font-weight: 400;
      font-size: 15px;
      line-height: 28px;
      letter-spacing: 0;
    }
.expect-card__desc-wrapper p:last-of-type{
  margin: 0;
}
    /* Time badge */
    .expect-card__badge-wrapper {
      margin-top: auto;
    }

    .expect-card__badge {
      display: inline-block;
      color: #0052cc;
      padding: 7px 14px;
      border-radius: 50px;
      background: rgba(0, 82, 204, 0.08);
      font-family: Lufga;
      font-weight: 500;
      font-size: 14px;
      line-height: 100%;
      letter-spacing: 0.01em;
      text-align: center;
      vertical-align: middle;
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1440px
    ─────────────────────────────────────────── */
    @media (max-width: 1440px) {
      .expect-section__inner {
        padding: 120px 30px;
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1280px
    ─────────────────────────────────────────── */
    @media (max-width: 1280px) {
      .expect-section__inner {
      }

      .expect-section__heading {
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1024px
    ─────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .expect-section__inner {
        padding: 90px 20px 100px;
      }

      .expect-section__heading {
        font-size: 36px;
        line-height: 48px;
      }

      .expect-section__grid {
        gap: 35px;
      }

      .expect-card__image-wrapper {
        height: 170px;
      }

      .expect-card__title {
        font-size: 18px;
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 991px
    ─────────────────────────────────────────── */
    @media (max-width: 991px) {
      .expect-section__heading {
      }

      .expect-section__grid {
        gap: 50px 25px;
        grid-template-columns: repeat(2, 1fr);
      }

      .expect-card__image-wrapper {
        height: 200px;
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 767px
    ─────────────────────────────────────────── */
    @media (max-width: 767px) {
      .expect-section__inner {
        padding: 55px 15px 60px;
      }

      .expect-section__heading {
        font-size: 28px;
        line-height: 28px;
      }
  .expect-section__grid {
    gap:30px;
 grid-template-columns: repeat(1, 1fr);
  }
      .expect-section__desc-wrapper {
        margin-bottom: 30px;
      }

      .expect-card__image-wrapper {
        height: 180px;
      }

      .expect-card__content {
        padding: 0;
      }

      .expect-card__title {
        font-size: 17px;
      }

      .expect-card__desc-wrapper p {
      }
    }