   * {
      margin: 0;
      padding: 0;
    }
    .Genesis-legacy {
      padding: 50px 70px;
      background: url("../images/Rectangle\ 319\ \(4\).png");
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
    }

    .Genesis-legacy-para {
      font-family: Poppins;
      font-weight: 500;
      font-style: Medium;
      font-size: 20px;
      line-height: 28px;
      letter-spacing: 1%;
      text-align: justify;
      color: #1c3f94;
    }

    .Genesis-legacy-para {
      position: relative;
      padding-left: 18px; /* space for the red line */
    }

    .Genesis-legacy-para::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 3px;
      height: 100%; /* ✅ EXACT SAME HEIGHT AS PARAGRAPH */
      background: #ee1b22;
      border-radius: 4px;
    }

    .Genesis-legacy-headings {
      font-family: Merriweather;
      font-weight: 700;
      font-style: Bold;
      font-size: 36px;
      padding: 10px 0px;

      letter-spacing: 1%;
      color: #1c3f94;
    }

    .Genesis-legacy-headings span {
      color: #ee1b22;
    }

    .feedback-line {
      width: 3px !important; /* ✅ force exact width */
      min-width: 3px !important; /* ✅ prevents shrink illusion */
      max-width: 3px !important; /* ✅ prevents stretch illusion */
      background: #ee1b22;
      border-radius: 4px;
      flex-shrink: 0; /* ✅ stops flex from resizing it */
      transform: none !important; /* ✅ prevents GPU scaling blur */
    }

    /* ============================= */
/* ✅ LARGE TABLETS & SMALL LAPTOPS (1200px ↓) */
/* ============================= */
@media (max-width: 1200px) {
  .Genesis-legacy {
    padding: 45px 50px;
  }

  .Genesis-legacy-headings {
    font-size: 32px;
  }

  .Genesis-legacy-para {
    font-size: 18px;
    line-height: 24px;
  }
}

/* ============================= */
/* ✅ TABLETS (992px ↓) */
/* ============================= */
@media (max-width: 992px) {
  .Genesis-legacy {
    padding: 40px 40px;
  }

  .Genesis-legacy-headings {
    font-size: 30px;
  }

  .Genesis-legacy-para {
    font-size: 17px;
    line-height: 24px;
  }
}

/* ============================= */
/* ✅ MOBILE (600px ↓) */
/* ============================= */
@media (max-width: 600px) {
  .Genesis-legacy {
    padding: 30px 20px;
  }

  .Genesis-legacy-headings {
    font-size: 24px;
    text-align: center;
  }

  .Genesis-legacy-para {
    font-size: 16px;
    line-height: 23px;
    padding-left: 14px;
  }

  .Genesis-legacy-para::before {
    width: 2px;
  }
}

/* ============================= */
/* ✅ VERY SMALL PHONES (400px ↓) */
/* ============================= */
@media (max-width: 400px) {
  .Genesis-legacy-headings {
    font-size: 22px;
  }

  .Genesis-legacy-para {
    font-size: 15px;
    line-height: 22px;
  }
}