 :root {
      --blue: #00647e;
      --dark: #333;
      --light-gray: #f8f8f8;
    }


    h1 {
      color: var(--blue);
      text-transform: uppercase;
      font-weight: 700;
      font-size: 1.8rem;
      margin-bottom: 10px;
    }


    /* ✅ Image styling */
    .table-image {
      display: block;
      max-width: 300px;
      height: auto;
      margin: 0 auto 25px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

   /* ✅ Table Wrapper (adds horizontal scroll on mobile only) */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background: #fff;
}

/* ✅ Table Base Styles */
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px; /* Ensures scroll on mobile */
  font-family: 'Montserrat', sans-serif;
}

/* ✅ Header & Cell Styling */
th, td {
  text-align: center;
  padding: 7px 18px;
  border-bottom: 1px solid #e6e6e6;
  white-space: nowrap;
  transition: background 0.2s ease;
}

th {
  background: #00647e; /* your main brand color */
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

td {
  color: #000000;
  background: #fff;
  font-size: 1rem;
}

/* ✅ Row Hover Effect */
tbody tr:hover td {
  background: #f7faff;
}

/* ✅ Zebra Stripes (optional) */
tbody tr:nth-child(even) td {
  background: #fafafa;
}

/* ✅ Mobile Responsiveness */
@media (max-width: 768px) {
  table {
    min-width: 650px; /* slightly smaller on mobile */
  }

  .table-wrapper {
    border: 1px solid #ddd;
    border-radius: 6px;
  }

  th, td {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  /* Optional Scrollbar Styling */
  .table-wrapper::-webkit-scrollbar {
    height: 6px;
  }
  .table-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
  }
  .table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
}

/* ✅ Optional: smooth scrolling */
.table-wrapper {
  scroll-behavior: smooth;
}


  .slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-width: 1200px;
    margin: 20px auto;
  }

  .slider-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
  }

  .slider-wrapper img {
    width: 100%;
    flex-shrink: 0;
  }

  /* Responsive widths */
  @media (min-width: 1024px) {
    .slider-wrapper img {
      width: calc(100% / 3); /* 3 per view */
      margin-left: 10px;
    }
  }

  @media (min-width: 600px) and (max-width: 1023px) {
    .slider-wrapper img {
      width: calc(100% / 2); /* 2 per view */
      margin-left: 10px;

    }
  }

  @media (max-width: 599px) {
    .slider-wrapper img {
      width: 100%; /* 1 per view */
    }
  }
  ul.ul-checks {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.ul-checks li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}

ul.ul-checks li i {
  color: #00647e;
  background: #e6f0ff;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 13px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

ul.ul-checks li:hover i {
  background: #00647e;
  color: #fff;
  transform: scale(1.1);
}
