<style>
        /* Luggy Usage Section Styles */
        .luggy-usage-section {
            background: #f8f9fa;
            position: relative;
        }

        .luggy-slideshow-container {
            max-width: 1000px;
            position: relative;
            margin: auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 107, 79, 0.1);
            overflow: hidden;
        }

        /* Show first slide by default, hide others */
        .luggy-slide {
            display: none;
            padding: 40px;
        }
        
        .luggy-slide:first-child {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0.4; }
            to { opacity: 1; }
        }

        .slide-content {
            padding: 20px;
        }

        .slide-number {
            font-size: 80px;
            font-weight: 700;
            color: rgba(0, 107, 79, 0.1);
            line-height: 1;
            margin-bottom: 20px;
        }

        .slide-content h3 {
            font-size: 28px;
            font-weight: 600;
            color: #006b4f;
            margin-bottom: 20px;
        }

        .slide-content p {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
            margin-bottom: 25px;
        }

        .slide-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .slide-features li {
            padding: 8px 0;
            font-size: 15px;
            color: #444;
        }

        .slide-features i {
            color: #009f6b;
            margin-right: 10px;
        }

        .slide-image {
            text-align: center;
            padding: 20px;
        }

        .slide-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Next & previous buttons */
        .luggy-prev, .luggy-next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            margin-top: -30px;
            padding: 16px;
            color: #006b4f;
            font-weight: bold;
            font-size: 20px;
            border-radius: 0 3px 3px 0;
            user-select: none;
            background: rgba(255, 255, 255, 0.8);
            transition: 0.3s;
        }

        .luggy-next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }

        .luggy-prev:hover, .luggy-next:hover {
            background-color: #006b4f;
            color: white;
        }

        /* The dots/bullets/indicators */
        .luggy-dots-container {
            text-align: center;
            padding: 20px;
        }

        .luggy-dot {
            cursor: pointer;
            height: 15px;
            width: 15px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.3s ease;
        }

        .luggy-dot.active, .luggy-dot:hover {
            background-color: #006b4f;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .luggy-slide {
                padding: 20px;
            }
            
            .slide-number {
                font-size: 60px;
            }
            
            .slide-content h3 {
                font-size: 24px;
            }
            
            .luggy-prev, .luggy-next {
                padding: 12px;
                font-size: 18px;
            }
        }

        @media (max-width: 576px) {
            .luggy-slideshow-container {
                border-radius: 10px;
            }
            
            .slide-content {
                padding: 10px;
            }
            
            .slide-number {
                font-size: 50px;
            }
            
            .slide-content h3 {
                font-size: 20px;
            }
        }
          /* ====== Floating Buttons ====== */
      .floating-buttons {
        position: fixed;
        bottom: 25px;
        left: 25px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 999;
      }

      .floating-btn {
        background: #006b4f;
        color: white;
        border: none;
        padding: 14px 22px;
        font-size: 16px;
        border-radius: 30px;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.3s;
        white-space: nowrap;
        width: 180px;
        text-align: center;
      }

      .floating-btn:hover {
        background: #009f6b;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      }

      /* ====== Popup Overlay ====== */
      .popup-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1000;
        justify-content: center;
        align-items: center;
      }

      /* ====== Popup Container ====== */
      .popup-container {
        background: #fff;
        width: 90%;
        max-width: 450px;
        padding: 25px;
        border-radius: 15px;
        position: relative;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        animation: slideDown 0.3s ease-out;
      }

      .popup-container.large {
        max-width: 700px;
        max-height: 80vh;
        overflow-y: auto;
      }

      @keyframes slideDown {
        from {
          opacity: 0;
          transform: translateY(-30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* ====== Close Button ====== */
      .close-btn {
        position: absolute;
        top: 12px;
        right: 12px;
        font-size: 22px;
        cursor: pointer;
        color: #333;
        transition: color 0.2s;
      }

      .close-btn:hover {
        color: #009f6b;
      }

      /* ====== Form Styling ====== */
      .popup-container h2 {
        margin-top: 0;
        text-align: center;
        color: #006b4f;
      }

      .popup-container input,
      .popup-container textarea {
        width: 100%;
        padding: 10px 12px;
        margin: 8px 0;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 14px;
        outline: none;
        transition: border 0.3s;
      }

      .popup-container input:focus,
      .popup-container textarea:focus {
        border: 1px solid #009f6b;
      }

      .popup-container textarea {
        resize: none;
        height: 100px;
      }

      .popup-container button {
        width: 100%;
        background: #006b4f;
        color: white;
        border: none;
        padding: 12px;
        border-radius: 8px;
        font-size: 15px;
        cursor: pointer;
        margin-top: 8px;
        transition: background 0.3s;
      }

      .popup-container button:hover {
        background: #009f6b;
      }

      /* ====== Policy Content ====== */
      .policy-content {
        max-height: 60vh;
        overflow-y: auto;
        padding-right: 10px;
      }

      .policy-content h3 {
        color: #006b4f;
        margin-top: 20px;
        margin-bottom: 10px;
      }

      .policy-content p {
        margin-bottom: 15px;
        line-height: 1.6;
      }

      .policy-content ul {
        margin-bottom: 15px;
        padding-left: 20px;
      }

      .policy-content li {
        margin-bottom: 8px;
        line-height: 1.5;
      }

      /* ====== Responsive ====== */
      @media (max-width: 768px) {
        .floating-buttons {
          left: 15px;
          bottom: 15px;
        }
        
        .floating-btn {
          width: 160px;
          padding: 12px 18px;
          font-size: 14px;
        }
        
        .popup-container {
          width: 95%;
          padding: 20px;
        }
        
        .popup-container.large {
          max-width: 95%;
        }
      }

      @media (max-width: 480px) {
        .floating-buttons {
          left: 10px;
          bottom: 10px;
        }
        
        .floating-btn {
          width: 140px;
          padding: 10px 15px;
          font-size: 13px;
        }
      }