.spec-table {
      border: 1px solid #ddd;
      border-collapse: collapse;
    }
    .spec-table th,
    .spec-table td {
      border: 1px solid #ddd;
      padding: 10px;
      vertical-align: top;
    }
    .spec-table th {
      background-color: #f8f9fa;
      font-weight: 600;
      width: 30%;
    }
    @media (max-width: 768px) {
      .spec-table td,
      .spec-table th {
        display: block;
        width: 100%;
      }
      .spec-table tr {
        margin-bottom: 1rem;
        display: block;
      }
    }


    /* gallery css */

     .product-title {
      text-align: center;
      font-weight: 500;
      font-size: 14px;
      margin-top: 10px;
    }
    .gallery-img {
      height: 180px;
      object-fit: cover;
      width: 100%;
      border-radius: 5px;
    }
    .gallery-item {
      padding: 15px;
    }




    /* application css */
         .applications-section {
            margin-bottom: 40px;
        }
        .section-title {
            color: #343a40;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #343a40;
            font-size: 24px;
            font-weight: bold;
        }
        .guarantee-banner {
            background-color: #f8f9fa;
            border-left: 4px solid #343a40;
            padding: 15px;
            margin-top: 30px;
            font-weight: 500;
            font-style: italic;
        }
        .application-list {
            list-style-type: none;
            padding-left: 0;
        }
        .application-item {
            margin-bottom: 10px;
            padding-left: 30px;
            position: relative;
            line-height: 1.5;
        }
        .application-item::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
            font-size: 18px;
        }