 /* commitment section */
  .commitment-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: url('../img/commitbg.png');
      border-radius: 20px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
      padding: 50px 60px;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }

    /* Left text */
    .commitment-text {
      max-width: 500px;
      font-size: 39px;
      font-weight: 600;
      line-height: 44px;
    }

    .commitment-text span {
      display: inline-block;
      font-weight: 500;
      margin-bottom: 15px;
    }

    /* Right logos */
    .commitment-logos {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .commitment-logos img {
      height: 80px;
      width: auto;
      object-fit: contain;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .commitment-section {
        flex-direction: column;
        text-align: center;
      }
      .commitment-text {
        margin-bottom: 30px;
      }
      .commitment-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
      }
      .commitment-logos img {
        height: 60px;
      }
    }
