
    body {
      background-color: #f6f9fc;
      color: #333;
      line-height: 1.6;
      padding-top: 80px;
      /* Adjust based on header height */
    }

    .container {
      margin: 0 auto;
      /* background: white; */
      padding: 10px 60px;
      /* box-shadow: 0 0 20px rgba(0,0,0,0.1); */
      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;
    }

    .table-type h3 {
      margin-top: 0;
    }

    .features-list {
      columns: 2;
      column-gap: 30px;
    }

    .page-break {
      page-break-after: always;
      border-top: 2px dashed #ccc;
      margin: 40px 0 10px 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;
    }


    .Card-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .card-content {
      padding: 15px;
      flex-grow: 1;
    }

    .card h3 {
      margin: 0 0 10px;
      font-size: 18px;
      color: #2c3e50;
    }

    .card p {
      color: #555;
      font-size: 14px;
      line-height: 1.5;
    }

    .read-more button {
      color: rgb(36, 70, 221);

      margin-top: 10px;
      display: inline-block;
      text-decoration: none;
    }

    .heater-stats-container {
      background-color: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      margin-top: 20px;
    }

    .heater-stats-container h1 {
      font-size: 26px;
      color: #d32f2f;
      margin-bottom: 20px;
    }

    .heater-stats-container h2 {
      font-size: 20px;
      color: #1976d2;
      margin-top: 25px;
    }

    .heater-stats-container ul {
      padding-left: 20px;
      margin-bottom: 10px;
    }

    .heater-stats-container li {
      margin-bottom: 6px;
    }

    .tips {
      background: #e8f5e9;
      border-left: 6px solid #388e3c;
      padding: 16px;
      margin-top: 30px;
      border-radius: 8px;
    }

    .tips h2 {
      color: #2e7d32;
    }


    @media print {
      .page-break {
        page-break-after: always;
      }
    }

    .keypoints-section {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      align-items: flex-start;
      max-width: 1200px;
      margin: 40px auto;
      padding: 20px;
    }

    .keypoints-image {
      flex: 1 1 40%;
      min-width: 300px;
    }

    .keypoints-image img {
      width: 75%;
      height: auto;
      border-radius: 10px;
      object-fit: cover;
    }

    .keypoints-content {
      flex: 1 1 55%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }

    .keypoint-block {
      background-color: #f9f9f9;
      padding: 20px;
      border-left: 4px solid #ff8800;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .keypoint-block h4 {
      margin-top: 0;
      font-size: 18px;
      color: #333;
    }

    .keypoint-block ul {
      padding-left: 20px;
      margin: 10px 0 0;
      font-size: 15px;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .keypoints-section {
        flex-direction: column;
      }

      .keypoints-content {
        grid-template-columns: 1fr;
      }
    }


    .forklift-header {
      font-size: 24px;
      margin-bottom: 30px;
      display: flex;
      align-items: center;
      gap: 10px;
    }


    .forklift-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .forklift-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      transition: transform 0.2s ease;
    }

    .forklift-card:hover {
      transform: translateY(-5px);
    }

    .forklift-image {
      width: 100%;
      height: 160px;
      background: #f0f0f0;
      border-radius: 8px;
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
    }

   

    .forklift-desc,
    .forklift-best {
      font-size: 14px;
      line-height: 1.5;
      color: #555;
    }

    .forklift-label {
      font-weight: bold;
      color: #222;
    }


  

  .brands-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

 

  .brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }

  .brand-card {
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-left: 5px solid #4a90e2;
  }

  .brand-card:hover {
    transform: translateY(-5px);
  }

  .brand-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
  }

  .brand-desc {
    font-size: 14px;
    color: #555;
  }
 

  .top-selling-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

 

  .top-selling-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }

  .forklift-card {
    background: #fefefe;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px;
    border-left: 5px solid #29a329;
    transition: transform 0.3s ease;
  }

   .forklift-card1 {
    background: #fefefe;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px;
    transition: transform 0.3s ease;
  }

  .forklift-card:hover {
    transform: translateY(-5px);
  }

  .forklift-model {
    font-size: 18px;
    font-weight: bold;
    color: #333;
  }

  .forklift-type {
    font-size: 16px;
    color: #0f82e0;
    margin-top: 6px;
    font-weight: bold;
  }

  .comparison-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

 
  .comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
  }

  .comparison-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
  }

  .comparison-card:hover {
    transform: translateY(-4px);
  }

  .brand-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .feature-list {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    padding-left: 18px;
  }

  .feature-list li {
    margin-bottom: 10px;
  }

  @media (max-width: 600px) {
    .comparison-title {
      font-size: 22px;
    }

    .brand-name {
      font-size: 18px;
    }
  }



   .comparison-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin: 40px auto;
    font-family: Arial, sans-serif;
  }

  .comparison-table {
    border-collapse: collapse;
    width: 100%;
    min-width: 900px;
    text-align: left;
  }

  .comparison-table th,
  .comparison-table td {
    border: 1px solid #ddd;
    padding: 12px 16px;
    vertical-align: top;
    background-color: #1976d2;
  }

  .comparison-table th {
    background-color: #4181e2;
    font-weight: bold;
    font-size: 16px;
    white-space: nowrap;
  }

  .comparison-table td {
    font-size: 14px;
    background-color: #fff;
  }

  .comparison-table tr:nth-child(even) td {
    background-color: #f9f9f9;
  }

  .comparison-table a {
    color: #2a5d9f;
    text-decoration: underline;
  }

  .icon {
    font-size: 18px;
    margin-right: 5px;
  }

  .scroll-note {
    text-align: right;
    font-size: 13px;
    color: #888;
    margin-top: 5px;
  }

.recommendation-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Exactly two columns */
  gap: 20px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
}



  .recommendation-card {
    background-color: #f9f9f9;
    border-left: 5px solid #0078D4;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
  }

  .recommendation-card:hover {
    transform: translateY(-3px);
  }

  .recommendation-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .recommendation-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
  }

  @media (max-width: 600px) {
    .recommendation-section {
      grid-template-columns: 1fr;
    }
  }


.electric-forklifts h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.forklift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.forklift-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px;
  background-color: #fdfdfd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.model-title {
  font-weight: bold;
  color: #1976d2;
  font-size: 18px;
}

.model-title:hover {
  text-decoration: underline;
}

.model-tag {
  color: #555;
  font-style: italic;
  margin: 4px 0;
}

.price {
  color: #c00;
  font-weight: bold;
}

.desc {
  font-size: 14px;
  margin-top: 8px;
  color: #333;
}

@media (max-width: 768px) {
  .forklift-grid {
    grid-template-columns: 1fr;
  }
}




.best-for ul li {
  margin-bottom: 10px;
  color: #333;
}

.next-steps ol {
  padding-left: 20px;
  counter-reset: step;
}

.next-steps li {
  margin-bottom: 12px;
  color: #444;
}

.next-steps li::marker {
  font-weight: bold;
}


hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 20px 0;
}


.forklift-guide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', sans-serif;
}




.guide-text ul {
  list-style: none;
  padding-left: 0;
  line-height: 2.8;
}



.guide-image {
  flex: 1 1 400px;
  text-align: center;
}

.guide-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


.forklift-market-section {
  max-width: 960px;
  margin: 50px auto;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}



.forklift-table-wrapper {
  overflow-x: auto;
}

.forklift-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

.forklift-table th,
.forklift-table td {
  border: 1px solid #ccc;
  padding: 12px 16px;
  text-align: left;
}

.forklift-table th {
  background-color: #6297e6;
  font-weight: bold;
}

.reviews-section p {
  background: #f9f9f9;
  padding: 14px 20px;
  border-left: 4px solid #f39c12;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 16px;
}


.buying-guide {
    max-width: 960px;
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
  }

  .buying-guide h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
  }

  .buying-timeline,
  .cheat-sheet ul,
  .use-cases {
    padding-left: 20px;
    margin-bottom: 30px;
  }

  .buying-timeline li,
  .cheat-sheet li,
  .use-cases li {
    margin-bottom: 10px;
  }

  .cheat-sheet p {
    font-weight: 500;
    margin-bottom: 8px;
  }

  * {
  box-sizing: border-box;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}