    * {
      margin: 0;
      padding: 0;
    }

    .safety-section{
        background: url("../images/Rectangle\ 443.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .safety-section-div {
      padding: 70px 70px 40px 70px;
      /* background-color: aquamarine; */
    }

    .safety-grid {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 10px;
    }

    .safety-grid-1 {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
    }

    .safety-grid-1 .safety-card {
      width: 390px;
      height: 206px;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;

      background-color:#EE1B22E5;
        border-radius: 8px;

    }

    .safety-grid-2 .safety-card {
      width: 390px;
      height: 206px;
      text-align: center;

      background-color: blue;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
       background-color:#EE1B22E5;
       border-radius: 8px;
    }

    .safety-grid-2 {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
    }
    .safety-card-icon {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 5px;
    }

    .safety-heading {
      text-align: center;
    }

    .safety-heading span {
      font-family: Merriweather;
      font-weight: 700;
      font-style: Bold;
      font-size: 36px;
      leading-trim: NONE;
      line-height: 100%;
      letter-spacing: 1%;
      color: #ee1b22e5;
    }

    .safety-heading h2 {
      font-family: Merriweather;
      font-weight: 700;
      font-style: Bold;
      font-size: 36px;
      leading-trim: NONE;
      line-height: 100%;
      letter-spacing: 1%;
      color: #fff;
    }

    .safety-heading p {
      font-family: Poppins;
      font-weight: 400;
      font-style: Regular;
      font-size: 16px;
      leading-trim: NONE;
      line-height: 24px;
      letter-spacing: 1%;
      text-align: center;
      color: #fff;
      padding: 10px 343px
    }

    .safety-card p {
      font-family: Poppins;
      font-weight: 500;
      font-style: Medium;
      font-size: 16px;
      leading-trim: NONE;
      line-height: 24px;
      letter-spacing: 1%;
      text-align: center;
      color: #fff;
      padding: 10px 45px;
    }

    .safety-card-icon h3 {
      font-family: Poppins;
      font-weight: 600;
      font-style: SemiBold;
      font-size: 24px;
      leading-trim: NONE;
      line-height: 100%;
      letter-spacing: 1%;
      text-align: center;
      color: #fff;
    }


    /* ===================== RESPONSIVE FIXES ===================== */

/* Large Tablets */
@media (max-width: 1100px) {
  .safety-heading p {
    padding: 10px 150px;
  }

  .safety-grid-1,
  .safety-grid-2 {
    gap: 20px;
  }

  .safety-card {
    width: 330px !important;
    height: auto;
    padding: 25px 10px;
  }
}

/* Tablet (2 cards per row) */
@media (max-width: 1270px) {
  .safety-heading h2,
  .safety-heading span {
    font-size: 30px;
  }

  .safety-heading p {
    padding: 10px 80px;
    font-size: 15px;
  }

  .safety-grid-1,
  .safety-grid-2 {
    flex-wrap: wrap;
    justify-content: center;
  }

  .safety-card {
    width: 45% !important;
    height: auto;
    padding: 0px;
  }

  .safety-card p {
    padding: 0 20px;
  }
}

/* Mobile Large (1 card per row) */
@media (max-width: 650px) {
  .safety-section-div {
    padding: 50px 20px;
  }

  .safety-heading p {
    padding: 10px 10px;
  }

  .safety-grid-1,
  .safety-grid-2 {
    flex-direction: column;
    gap: 15px;
  }

  .safety-card {
    width: 100% !important;
    height: auto;
    padding: 0px;
  }

  .safety-card-icon h3 {
    font-size: 20px;
  }

  .safety-card p {
    font-size: 14px;
    padding: 0 10px;
  }
}

/* Mobile Small */
@media (max-width: 430px) {
  .safety-heading h2,
  .safety-heading span {
    font-size: 26px;
  }

  .safety-heading p {
    font-size: 14px;
  }

  .safety-card {
    padding: 0px;
  }

  .safety-card-icon h3 {
    font-size: 18px;
  }

  .safety-card p {
    font-size: 13px;
    line-height: 20px;
  }
}