      /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .modal.active {
            display: flex;
            opacity: 1;
        }
        
        .modal-content {
            background-color: white;
            width: 90%;
            max-width: 500px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .modal.active .modal-content {
            transform: translateY(0);
        }
        
        .modal-header {
            background: #0047ba;
            color: white;
            padding: 20px;
            text-align: center;
            position: relative;
        }
        
        .modal-header h2 {
            font-size: 24px;
            margin-bottom: 5px;
        }
        
        .modal-header p {
            opacity: 0.9;
            margin: 15px;
        }
        
        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: white;
            background: none;
            border: none;
        }
        
        .modal-body {
            padding: 25px;
        }
        
        .modal-body p {
            text-align: center;
            margin-bottom: 20px;
            color: #555;
            line-height: 1.6;
        }
        
        .qrcode-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }
        
        .qrcode {
            text-align: center;
            flex: 1;
            min-width: 160px;
        }
        
        .qrcode img {
            width: 150px;
            height: 150px;
            border: 1px solid #eee;
            border-radius: 10px;
            margin-bottom: 10px;
        }
        
        .qrcode p {
            font-weight: 600;
            color: #0047ba;
            margin-top: 5px;
        }
        
        .store-badges {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 25px;
        }
        
        .store-badge {
            display: inline-block;
            height: 45px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .instructions {
            margin-top: 25px;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 10px;
            font-size: 14px;
            color: #666;
        }
        
        .instructions h3 {
            color: #0047ba;
            margin-bottom: 10px;
            text-align: center;
        }
        
        .instructions ol {
            padding-left: 20px;
        }
        
        .instructions li {
            margin-bottom: 8px;
        }
        
        @media (max-width: 576px) {
            .qrcode-container {
                flex-direction: column;
                align-items: center;
            }
            
            .store-badges {
                flex-direction: column;
                align-items: center;
            }
            
            .store-badge {
                width: 150px;
            }
        }