 .amenities-section {
    margin-top: 20px;
    text-align: center;
    background: #f8f8f1;
    padding: 20px;
    display: block!important;
  }

  .amenities-title {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 40px;
  }

  /* Table-style container */
  .amenities-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 20px 15px;
  }

  .amenities-table td {
    vertical-align: middle;
    position: relative;
    left: 7%;
    padding: 4px 0px;
  }

  /* Icon + text inline */
  .amenity-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .amenity-inline img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

  .amenity-inline img:hover {
    transform: scale(1.1);
  }

  .mobile-aminities {
    background: #f8f8f1;
    display: none !important;
  }

  /* Responsive adjustments */
  @media (max-width: 992px) {
    .amenities-section{
      display: none!important;
    }
    .amenities-table {
      border-spacing: 15px 10px;
    }

    .amenity-inline img {
      width: 30px;
      height: 30px;
    }

    .amenity-inline span {
      font-size: 14px;
    }

    .mobile-aminities {
      background: #f8f8f1;
      padding: 5px!important;
      display: block !important;
    }
  }

  @media (max-width: 768px) {

    .amenities-table tr {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-bottom: 10px;
      margin-left: -40px !important;
    }

    .amenities-table td {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 45%;
      text-align: center !important;

    }

    .amenity-inline {
      justify-content: flex-start;
      gap: 8px;
      padding: 3px;
    }

    .amenity-inline img {
      width: 28px;
      height: 28px;
    }

    .amenity-inline p {
      font-size: 12px !important;
    }

  }

  table tr td {
    text-align: left;
  }