      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        background: #f5f7fb;
      }

      /* ========================= */
      /* ✅ FEEDBACK SECTION */
      /* ========================= */
      .feedback-section {
        position: relative;
        padding: 80px 70px;
        background: 
          url("../images/Rectangle\ 319\ \(5\).png");
        background-size: cover;
        background-position: center;
      }

      .feedback-container {
        /* max-width: 1300px; */
        margin: auto;
        display: flex;
        gap: 90px;
        align-items: center;
        justify-content: center;
      }

      /* ========================= */
      /* ✅ LEFT CONTENT */
      /* ========================= */
      .feedback-left {
        width: 63%;
      }

      .feedback-title {
        font-family: Merriweather, serif;
        font-size: 36px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 25px;
        color: #134c9b;
      }

      .feedback-title span {
        color: #ee1b22;
      }

      .feedback-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .feedback-point {
        display: flex;
        gap: 12px;
        /* align-items: flex-start; */
      }

      .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 */
      }

      .feedback-point p {
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 20px;

        letter-spacing: 0%;
        text-align: justify;

        line-height: 1.6;
        color: #1c3f94;

        text-align: justify;
      }

      /* ========================= */
      /* ✅ RIGHT FORM CARD */
      /* ========================= */
      .feedback-form-box {
        width: 38%;
        background: #fff;
        padding: 57px 36px;
        border-radius: 5px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
      }

      .feedback-form-title {
        font-family: Merriweather;
        font-weight: 700;
        font-style: Bold;
        font-size: 28px;

        letter-spacing: 0%;
        text-align: center;

        text-align: center;
        color: #1c3f94;
        margin-bottom: 8px;
      }

      .feedback-form-title span {
        color: #ee1b22;
        font-size: 40px;
      }

      .feedback-form-desc {
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 20px;

        letter-spacing: 0%;
        text-align: center;

        color: #1c3f94;
        margin-bottom: 20px;
      }

      .feedback-form {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }

      .form-row {
        display: flex;
        gap: 12px;
      }

      .feedback-form select,
      .feedback-form input,
      .feedback-form textarea {
        width: 100%;
        padding: 15px 12px;
        border-radius: 8px;
        border: 1px solid #1c3f94;
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 15px;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 0%;

        outline: none;
        color: #1c3f94;
      }

      .feedback-form textarea {
        resize: none;
        height: 140px;
      }

      .feedback-form input::placeholder,
      .feedback-form textarea::placeholder {
        color: #1c3f94;
        opacity: 1; /* ✅ Important for Firefox */
      }

      .feedback-form button {
        margin-top: 8px;
        padding: 13px;
        border-radius: 8px;
        border: none;
        background: #1c3f94;
        color: #fff;
        font-family: Poppins;
        font-weight: 600;
        font-style: SemiBold;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 1%;

        cursor: pointer;
        transition: 0.3s;
      }

      .feedback-form button:hover {
        background: #0d3a85;
      }

      /* ========================= */
      /* ✅ RESPONSIVE */
      /* ========================= */

      /* ✅ MEDIUM DESKTOP SCALING (1000px – 1399px) */
      @media (max-width: 1499px) and (min-width: 1200px) {
        .feedback-left {
          width: 55%;
        }

        .feedback-form-box {
          width: 45%;
        }
        .feedback-title {
          font-size: 30px; /* was 36px */
        }

        .feedback-point p {
          font-size: 18px; /* was 20px */
        }

        .feedback-form-title {
          font-size: 24px; /* was 28px */
        }

        .feedback-form-title span {
          font-size: 34px; /* was 40px */
        }

        .feedback-form-desc {
          font-size: 18px; /* was 20px */
        }

        .feedback-form select,
        .feedback-form input,
        .feedback-form textarea {
          font-size: 14px;
        }

        .feedback-form button {
          font-size: 15px;
        }
      }

      @media (max-width: 1200px) {
        .feedback-container {
          flex-direction: column;
        }

        .feedback-left,
        .feedback-form-box {
          width: 100%;
        }
      }

      @media (max-width: 600px) {
        .feedback-section {
          padding: 50px 20px;
        }

        .feedback-title {
          font-size: 28px;
        }

        .form-row {
          flex-direction: column !important;
        }
      }