    .features-section {
      max-width: 1260px;
      margin: 0 auto;
      padding: 80px 30px 180px;
    }

    .features-section__heading {
      color: #000;
      /*! max-width: 780px; */
      margin: 0 auto 20px;
      font-family: Lufga, Arial, sans-serif;
      font-weight: 600;
      font-size: 40px;
      line-height: 50px;
      letter-spacing: 0;
      text-align: center;
    }

    .features-section__subtitle-wrapper {
      text-align: center;
      margin-bottom: 52px;
    }

    .features-section__subtitle-wrapper p {
      color: rgba(0, 0, 0, 0.7);
      font-family: Lufga, Arial, sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 28px;
      max-width: 900px;
      margin: 0 auto;
    }

    .features-section__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 54px 60px;
    }

    .feature-card {
      display: flex;
      flex-direction: column;
    }

    .feature-card__image-wrapper {
      width: 100%;
      height: 200px;
      border-radius: 10px;
      overflow: hidden;
      background: #ebebeb;
    }

    .feature-card__image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .feature-card__content {
      display: flex;
      flex-direction: column;
      flex: 1;
      padding-top: 20px;
    }

    .feature-card__title {
      color: #111;
      margin: 5px 0 10px;
      font-family: Lufga, Arial, sans-serif;
      font-weight: 500;
      font-size: 20px;
      line-height: 30px;
      letter-spacing: 0;
    }

    .feature-card__desc-wrapper {
      flex: 1;
    }

    .features-section__grid .feature-card__desc-wrapper p {
      color: rgba(0, 0, 0, 0.8);
      font-family: Lufga, Arial, sans-serif;
      font-weight: 400;
      font-size: 15px;
      line-height: 28px;
      letter-spacing: 0;
      padding: 0;
      margin: 0 0 15px;
    }

    .feature-card__link {
      text-decoration: none !important;
      display: inline-block;
      cursor: pointer;
      font-family: Lufga, Arial, sans-serif;
      font-size: 14px;
      line-height: 100%;
      letter-spacing: 0.01em;
      -webkit-transition: all 0.5s ease 0s;
      transition: all 0.5s ease 0s;
      padding: 0 0 3px;
      border-bottom: 1px solid #000;
      width: max-content;
      color: #000 !important;
      font-weight: 500 !important;
      margin-top: 16px;
    }

    .feature-card__link:hover {
      color: #0052cc !important;
      border-color: #0052cc !important;
    }

    @media (max-width: 1440px) {
      .features-section {
        padding: 72px 30px 150px;
      }
      .features-section__grid {
        gap: 40px 30px;
      }
    }

    @media (max-width: 1366px) {
      .features-section {
        padding: 64px 30px 130px;
      }
      .features-section__heading {
        font-size: 36px;
        line-height: 46px;
      }
    }

    @media (max-width: 1280px) {
      .features-section {
        padding: 60px 30px 120px;
      }
      .features-section__heading {
        font-size: 34px;
      }
      .features-section__grid {
        gap: 40px 28px;
      }
    }

    @media (max-width: 1024px) {
      .features-section {
        padding: 56px 20px 90px;
      }
      .features-section__heading {
        font-size: 32px;
        line-height: 42px;
      }
      .features-section__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 44px 25px;
      }
      .feature-card__image-wrapper {
        height: 180px;
      }
    }

    @media (max-width: 991px) {
      .features-section {
        padding: 48px 20px 80px;
      }
      .features-section__heading {
        font-size: 28px;
        line-height: 38px;
      }
      .features-section__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 24px;
      }
    }

    @media (max-width: 767px) {
      .features-section {
        padding: 40px 15px 60px;
      }
      .features-section__heading {
        font-size: 26px;
        line-height: 34px;
      }
      .features-section__subtitle-wrapper {
        margin-bottom: 36px;
      }
      .features-section__grid {
        grid-template-columns: 1fr;
        gap: 45px 25px;
      }
      .feature-card__image-wrapper {
        height: auto;
        width: 100%;
        aspect-ratio: 16 / 9;
      }
      .feature-card__title {
        margin: 5px 0 10px;
      }
    }