    /* WebwinkelKeur Badge Styling */
    .webwinkelkeur-badge {
      position: fixed;
      bottom: 20px;
      left: 20px;
      z-index: 1000000;
      transition: transform 0.3s ease;
      display: block;
    }

    .webwinkelkeur-badge img {
      width: 120px;
      height: auto;
      display: block;
    }

    .webwinkelkeur-badge:hover {
      transform: scale(1.1);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .webwinkelkeur-badge {
        bottom: 70px;
        left: 15px;
      }

      .webwinkelkeur-badge img {
        width: 90px;
      }
    }

    /* Extra spacing below navbar */
    main {
      padding-top: 32px;
    }

    /* Product section spacing */
    .service_demo4 {
      height: auto !important;
      min-height: 0 !important;
    }
    .service_demo4 .container,
    .service_demo4 .row,
    .service_demo4 .col-md-4 {
      height: auto !important;
      min-height: 0 !important;
    }
    .service_demo4 .row.margin-t-4 p {
      margin-bottom: 0 !important;
    }
    .service_demo4 .row.margin-t-4 + .row {
      margin-top: 15px !important;
    }

    /* Responsive line break - hidden by default, shown at medium widths */
    .br-md {
      display: none;
    }
    @media (min-width: 992px) and (max-width: 1200px) {
      .br-md {
        display: inline;
      }
    }

    /* Products section */
    .products-section {
      padding: 2rem 0;
    }
    .products-section .product-row {
      padding: 2rem 0;
      border-bottom: 1px solid #1a1a1a;
    }
    .products-section .product-row:last-child {
      border-bottom: none;
    }
    .products-section .product-row h2 {
      margin-bottom: 1rem;
    }
    .products-section .product-row p {
      margin-bottom: 1.5rem;
    }
    .product-image-container {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .product-image-placeholder {
      width: 100%;
      height: 200px;
      background: #1a1a1a;
      border: 1px solid #2a2a2a;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #444;
      font-size: 14px;
    }
    .product-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 12px;
      object-fit: cover;
    }
    .text-lg-right {
      text-align: left;
    }
    @media (min-width: 992px) {
      .text-lg-right {
        text-align: right;
      }
    }
    @media (max-width: 991px) {
      .product-image-container {
        margin-top: 1.5rem;
      }
    }
  
