        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #0a192f;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Urgency Banner */
        .urgency-banner {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: #ff3b30;
            color: #ffffff;
            text-align: center;
            padding: 15px 20px;
            font-weight: 700;
            font-size: 16px;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .countdown-timer {
            font-size: 20px;
            font-weight: 900;
            margin-left: 10px;
            color: #ffffff;
        }

        /* Main Content */
        .main-content {
            margin-top: 80px;
            padding: 0 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Section Styling */
        .section {
            padding: 60px 0;
            text-align: center;
        }

        .section h1 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            color: #ff8c0a;
        }

        .section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #ff8c0a;
        }

        .section h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .subtitle {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: #cccccc;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Carousel */
        .carousel-container {
            position: relative;
            max-width: 600px;
            margin: 0 auto 30px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .carousel-slide {
            display: none;
            animation: fadeIn 0.5s ease-in-out;
        }

        .carousel-slide.active {
            display: block;
        }

        .carousel-slide img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .carousel-caption {
            font-size: 1.3rem;
            font-weight: 700;
            margin-top: 20px;
            color: #ff8c0a;
        }

        .transition-text {
            font-size: 2rem;
            font-weight: 900;
            color: #ff3b30;
            margin: 40px 0;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Solution Section */
        .solution-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }

        .solution-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            border: 2px solid #ff8c0a;
            transition: transform 0.3s ease;
        }

        .solution-item:hover {
            transform: translateY(-10px);
        }

        .solution-item img {
            width: 100%;
            max-width: 300px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .solution-item h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #ff8c0a;
            margin-bottom: 15px;
        }

        /* Offer Section */
        .offer-section {
            background: linear-gradient(135deg, #ff8c0a, #ff3b30);
            margin: 60px 0;
            border-radius: 20px;
            padding: 50px 30px;
        }

        .combo-image {
            max-width: 400px;
            width: 100%;
            margin-bottom: 30px;
            border-radius: 15px;
        }

        .price-container {
            margin: 30px 0;
        }

        .original-price {
            font-size: 1.5rem;
            text-decoration: line-through;
            color: #cccccc;
            margin-bottom: 10px;
        }

        .current-price {
            font-size: 3rem;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 30px;
        }

        /* CTA Button */
        .cta-button {
            background: #ff8c0a;
            color: #ffffff;
            border: none;
            padding: 20px 40px;
            font-size: 1.3rem;
            font-weight: 800;
            border-radius: 50px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 30px 0;
            animation: pulse 2s infinite;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 140, 10, 0.4);
        }

        .cta-button:hover {
            background: #e67c00;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 140, 10, 0.6);
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .guarantee {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
            font-weight: 600;
        }

        .guarantee::before {
            content: "🛡️";
            margin-right: 10px;
            font-size: 1.5rem;
        }

        /* Floating CTA Button */
        .floating-cta {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: linear-gradient(45deg, #ff8c0a, #ff3b30);
            color: #ffffff;
            border: none;
            padding: 15px 25px;
            font-size: 1.1rem;
            font-weight: 800;
            border-radius: 50px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: floating-pulse 2s infinite;
            z-index: 999;
            box-shadow: 0 8px 25px rgba(255, 140, 10, 0.4);
            transition: all 0.3s ease;
        }

        .floating-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 140, 10, 0.6);
        }

        @keyframes floating-pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        /* Additional CTA buttons styling */
        .secondary-cta {
            background: linear-gradient(45deg, #ff3b30, #ff8c0a);
            color: #ffffff;
            border: 2px solid #ff8c0a;
            padding: 15px 30px;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 10px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 20px 10px;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        .secondary-cta:hover {
            background: linear-gradient(45deg, #e67c00, #ff3b30);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 140, 10, 0.4);
        }

        /* Mobile responsiveness for floating button */
        @media (max-width: 768px) {
            .floating-cta {
                bottom: 15px;
                right: 15px;
                padding: 12px 20px;
                font-size: 1rem;
            }
            
            .secondary-cta {
                display: block;
                width: 90%;
                margin: 15px auto;
                text-align: center;
            }
        }

        /* Testimonials */
        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .testimonial {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            border-left: 5px solid #ff8c0a;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .testimonial-author {
            font-weight: 700;
            color: #ff8c0a;
        }

        /* Footer */
        .footer {
            background-color: rgba(0, 0, 0, 0.3);
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid #333;
        }

        .footer p {
            margin-bottom: 10px;
            color: #cccccc;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .urgency-banner {
                font-size: 14px;
                padding: 12px;
            }

            .countdown-timer {
                font-size: 16px;
                display: block;
                margin-top: 5px;
                margin-left: 0;
            }

            .section h1 {
                font-size: 2rem;
            }

            .section h2 {
                font-size: 1.5rem;
            }

            .solution-columns {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .carousel-slide img {
                height: 300px;
            }

            .current-price {
                font-size: 2.5rem;
            }

            .cta-button {
                padding: 15px 30px;
                font-size: 1.1rem;
            }

            .main-content {
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .section h1 {
                font-size: 1.8rem;
            }

            .section h2 {
                font-size: 1.3rem;
            }

            .carousel-slide img {
                height: 250px;
            }

            .current-price {
                font-size: 2rem;
            }

            .cta-button {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }

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