 * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}
 
 .container {
      margin: 0 auto;
      padding: 10px 60px;
      border-radius: 10px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin: 25px 0;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }

    th,
    td {
      border: 1px solid #ddd;
      padding: 15px;
      text-align: left;
    }

    th {
      background-color: #3498db;
      color: white;
      font-weight: bold;
    }

    tr:nth-child(even) {
      background-color: #f8f9fa;
    }

    .gallery-container {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      /* 6 equal-width columns */
      gap: 25px;
      margin: 30px 0;
    }


    .gallery-container img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gallery-container img:hover {
      transform: scale(1.03);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }

    .table-type {
      background-color: #f0f7fd;
      padding: 20px;
      border-radius: 8px;
      margin: 20px 0;
      border-left: 4px solid #3498db;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      width: 100%;
      max-width: 1000px;
      margin: 20px auto;
    }

    .table-type h3 {
      margin-top: 0;
    }

    .table-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .table-text {
      flex: 1;
      min-width: 250px;
    }

    .table-image {
      width: 40%;
      max-width: 350px;
      border-radius: 20px;
      height: auto;
      object-fit: cover;
    }

    /* Features list columns */
    .features-list {
      margin-left: 15px;
      columns: 2;
      column-gap: 30px;
    }

    /* Tablet responsiveness */
    @media (max-width: 992px) {
      .table-type {
        padding: 18px;
        font-size: 16px;
      }
    }

    /* Mobile responsiveness */
    @media (max-width: 600px) {
      .table-type {
        padding: 16px;
        font-size: 15px;
        margin: 15px 10px;
        border-left-width: 3px;
        line-height: 1.8;
      }

      .table-content {
        flex-direction: column;
        align-items: center;
      }

      .table-image {
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
      }

      .features-list {
        columns: 1;
      }
    }

    .table-content {
      display: flex;
      align-items: center;
      /* Vertically center image and text */
      gap: 20px;
      flex-wrap: wrap;
    }

    .table-image {
      width: 40%;
      max-width: 350px;
      border-radius: 20px;
      object-fit: cover;
      height: auto;
    }

    .pricing-summary{
        margin: 15px 0px;
    }

    .tableTypeTile{
        margin-bottom: 15px;
    }

    .table-text {
      flex: 1;
      min-width: 250px;
    }

    @media (max-width: 768px) {
      .table-content {
        flex-direction: column;
        align-items: flex-start;
        /* reset on small screens */
      }

      .table-image {
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
      }

      .features-list {
        columns: 1;
      }
    }


    .page-break {
      page-break-after: always;
      border-top: 2px dashed #ccc;
      margin: 20px 0 0 0;
      padding-top: 20px;
    }

    .price-high {
      color: #e74c3c;
      font-weight: bold;
    }

    .price-low {
      color: #27ae60;
      font-weight: bold;
    }

    .vendor-link {
      color: #3498db;
      text-decoration: none;
      font-weight: bold;
    }

    .vendor-link:hover {
      text-decoration: underline;
    }

    @media print {
      .page-break {
        page-break-after: always;
      }
    }