      .parts-hero {
        min-height: 349px;
        display: flex;
        align-items: center;
        padding: 40px 0;
        box-sizing: border-box;
        background: #86bee6 url("/parts/hero_banner_img.png") no-repeat right center;
        background-size: auto 100%;
        margin-bottom: 130px;
      }

      .parts-hero .wrap {
        width: 100%;
      }

      .parts-hero__title {
        max-width: 760px;
        margin: 0 0 17px;
        font-family: "Roboto Condensed", sans-serif;
        font-weight: 700;
        font-size: 30px;
        line-height: 1.17;
        color: #ffffff;
      }

      .parts-hero__subtitle {
        max-width: 760px;
        margin: 0 0 37px;
        font-family: "Roboto Condensed", sans-serif;
        font-weight: 500;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.01em;
        color: #ffffff;
      }

      .parts-hero__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 248px;
        height: 54px;
        background: #d16556;
        color: #ffffff;
        font-family: "Roboto Condensed", sans-serif;
        font-weight: 700;
        font-size: 17px;
        text-transform: uppercase;
        border: none;
        cursor: pointer;
        transition: background-color 0.2s ease;
      }

      .parts-hero__btn:hover {
        background: #bd5346;
      }

      /* Responsive Design */
      @media (max-width: 1905px) {
        .parts-hero {
          background-position: left calc(50% - 181px) center;
        }
      }

      @media (max-width: 1200px) {
        .parts-hero {
          background-position: left 419px center;
        }
      }

      @media (max-width: 1100px) {
        .parts-hero__title {
          font-size: 26px;
        }

        .parts-hero__subtitle {
          font-size: 18px;
        }
      }

      @media (max-width: 767px) {
        .parts-hero {
          background-image: none;
          min-height: 0;
          margin-bottom: 60px;
        }

        .parts-hero__container {
          padding: 30px 16px;
        }

        .parts-hero__title {
          font-size: 22px;
          margin-bottom: 12px;
        }

        .parts-hero__subtitle {
          font-size: 16px;
          line-height: 1.5;
          margin-bottom: 24px;
        }

        .parts-hero__btn {
          width: 100%;
          max-width: 320px;
          font-size: 15px;
          height: 50px;
        }
      }
