    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #000000;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 60px 0;
        }

        .section-hero {
            padding: 100px 0;
            text-align: center;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #ffffff, #00ff00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 40px;
            color: #cccccc;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            background: linear-gradient(45deg, #00ff00, #00cc00);
            color: #000000;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
        }

        .logo-strip {
            background-color: #111111;
            padding: 40px 0;
            border-top: 2px solid #00ff00;
            border-bottom: 2px solid #00ff00;
        }

        .logo-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .logo-item {
            height: 60px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .logo-item:hover {
            opacity: 1;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 30px;
            color: #00ff00;
            font-weight: bold;
        }

        .section-content {
            font-size: 1.2rem;
            text-align: center;
            margin-bottom: 40px;
            color: #cccccc;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            border: 2px solid #333333;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            border-color: #00ff00;
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 255, 0, 0.1);
        }

        .feature-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 15px;
            margin-bottom: 30px;
        }

        .feature-title {
            font-size: 1.8rem;
            color: #00ff00;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .feature-description {
            font-size: 1.1rem;
            color: #cccccc;
            margin-bottom: 30px;
        }

        .testimonial-section {
            background-color: #111111;
            padding: 80px 0;
        }

        .testimonial-slider {
            overflow: hidden;
            position: relative;
            margin-top: 40px;
        }

        .testimonial-track {
            display: flex;
            animation: scroll 20s linear infinite;
            gap: 30px;
        }

        .testimonial-item {
            min-width: 300px;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid #333333;
        }

        .testimonial-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .results-image {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 15px;
            margin: 40px auto;
            display: block;
        }

        .risk-disclaimer {
            background-color: #1a1a1a;
            padding: 40px;
            border-radius: 15px;
            border-left: 5px solid #00ff00;
            margin: 60px 0;
        }

        .risk-title {
            color: #00ff00;
            font-size: 1.4rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .risk-text {
            color: #cccccc;
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .footer {
            background-color: #111111;
            padding: 40px 0;
            text-align: center;
            border-top: 2px solid #333333;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 20px;
        }

        .footer-link {
            color: #00ff00;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: #ffffff;
        }

        .whatsapp-float {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, #25d366, #128c7e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1000;
            animation: breathe 2s ease-in-out infinite;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-icon {
            font-size: 35px;
            color: white;
        }

        .notification-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: #ff0000;
            color: white;
            border-radius: 50%;
            width: 25px;
            height: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }

        .floating-button {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(45deg, #00ff00, #00cc00);
            color: #000000;
            padding: 18px 60px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            z-index: 1000;
            animation: breathe 2s ease-in-out infinite;
            box-shadow: 0 4px 20px rgba(0, 255, 0, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @keyframes breathe {
            0%, 100% { transform: scale(1) translateY(-50%); }
            50% { transform: scale(1.05) translateY(-50%); }
        }

        @keyframes breatheButton {
            0%, 100% { transform: scale(1) translateX(-50%); }
            50% { transform: scale(1.05) translateX(-50%); }
        }

        .floating-button {
            animation: breatheButton 2s ease-in-out infinite;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .logo-container {
                justify-content: center;
            }
            
            .logo-item {
                height: 40px;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 20px;
            }
            
            .whatsapp-float {
                width: 60px;
                height: 60px;
                right: 20px;
            }
            
            .whatsapp-icon {
                font-size: 30px;
            }
            
            .floating-button {
                padding: 15px 40px;
                font-size: 1rem;
            }
        }