 /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        } */
        
        /* body {
            height: 2000px;
            background: linear-gradient(to bottom, #f5f7fa 0%, #c3cfe2 100%);
            padding: 20px;
        } */
        
        /* .container {
            max-width: 800px;
            margin: 0 auto;
        } */
        
        h1 {
            text-align: center;
            color: #333;
            margin: 40px 0;
            font-size: 2.5rem;
        }
        
        .content {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            line-height: 1.6;
            font-size: 1.1rem;
            color: #444;
        }
        
        .content p {
            margin-bottom: 20px;
        }
        
        /* WhatsApp Floating Icon Styles */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease-in-out;
            animation: pulse 2s infinite;
            text-decoration: none;
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
        }
        
        .whatsapp-float:active {
            transform: scale(0.95);
        }
        
        /* Tooltip on hover */
        .whatsapp-float .tooltip {
            visibility: hidden;
            width: 120px;
            background-color: #333;
            color: #fff;
            text-align: center;
            border-radius: 6px;
            padding: 5px;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            right: 0;
            font-size: 14px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .whatsapp-float .tooltip::after {
            content: "";
            position: absolute;
            top: 100%;
            right: 20px;
            border-width: 5px;
            border-style: solid;
            border-color: #333 transparent transparent transparent;
        }
        
        .whatsapp-float:hover .tooltip {
            visibility: visible;
            opacity: 1;
        }
        
        /* Pulse animation */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }
        }
        
        @media (max-width: 480px) {
            .whatsapp-float {
                width: 45px;
                height: 45px;
                bottom: 15px;
                right: 15px;
                font-size: 22px;
            }
        }
        
        /* Scroll indicator */
        .scroll-info {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 14px;
            z-index: 999;
        }