.ml-section {
      padding: 60px 20px;
    }

    .ml-section-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .ml-section-title h2 {
      margin: 0;
      font-size: 28px;
      color: #004b87;
    }

    .ml-section-title p {
      margin: 10px 0 0 0;
      color: #555;
    }

    .ml-filter-buttons {
      text-align: center;
      margin-bottom: 40px;
    }

    .ml-filter-buttons button {
      background-color: #004b87;
      color: #fff;
      border: none;
      padding: 10px 20px;
      margin: 5px;
      border-radius: 25px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .ml-filter-buttons button:hover,
    .ml-filter-buttons button.ml-active {
      background-color: #007bff;
    }

    /* Grid container */
    .ml-workers-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      justify-items: center;
      align-items: start;
    }

    /* Worker card */
    .ml-worker-card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s;
      display: flex;
      flex-direction: column;
      width: 100%;
      height: 460px; /* fixed card height */
    }

    .ml-worker-card:hover {
      transform: translateY(-5px);
    }

    /* Image scales down proportionally in height */
    .ml-worker-card img {
      width: 100%;
      height: auto;
      min-height: 200px;
      max-height: 250px; /* limit image height */
      display: block;
      margin: 0 auto;
    }

    .ml-worker-info {
      padding: 15px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
    }

    .ml-worker-info h3 {
      margin: 5px 0;
      color: #004b87;
      font-size: 18px;
    }

    .ml-worker-info p {
      margin: 3px 0;
      font-size: 13px;
      color: #555;
    }

    .ml-whatsapp-btn {
      display: inline-block;
      background-color: #25D366;
      color: #fff;
      text-decoration: none;
      padding: 8px 15px;
      border-radius: 25px;
      transition: background-color 0.3s;
      font-size: 14px;
      margin-top: 10px;
      text-align: center;
    }

    .ml-whatsapp-btn:hover {
      background-color: #20b858;
    }

    /* Responsive adjustments */
    @media (min-width: 1200px) {
      .ml-workers-container {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (min-width: 992px) and (max-width: 1199px) {
      .ml-workers-container {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (min-width: 768px) and (max-width: 991px) {
      .ml-workers-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 767px) {
      .ml-workers-container {
        grid-template-columns: 1fr;
      }

      .ml-worker-card {
        width: 90%;
        height: auto; /* on mobile, let it scale naturally */
      }

      .ml-worker-card img {
        max-height: 320px;
      }
    }