@keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        .float-animation {
            animation: float 6s ease-in-out infinite;
        }
        .hero-gradient {
            background: white;
        }
        .btn-hover-effect {
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(255, 32, 78, 0.2);
        }
        .btn-hover-effect:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 15px rgba(255, 32, 78, 0.3);
        }
        .text-shadow {
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }
        .slide-in {
            animation: slideIn 1s ease-out forwards;
        }
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .ssl-section {
            background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
            position: relative;
            overflow: hidden;
        }
        
        .ssl-section::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background-color: #FF204E;
            opacity: 0.1;
            border-radius: 50%;
        }
        
        .ssl-section::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 150px;
            height: 150px;
            background-color: #FF204E;
            opacity: 0.1;
            border-radius: 50%;
        }
        
        .ssl-feature-item {
            transition: all 0.3s ease;
        }
        
        .ssl-feature-item:hover {
            transform: translateX(10px);
        }
        
        .ssl-illustration {
            position: relative;
            z-index: 2;
        }
        
        .ssl-illustration::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 2px dashed #FF204E;
            border-radius: 12px;
            z-index: -1;
        }
        
        .ssl-checkmark {
            color: #FF204E;
        }





        .ssl-install-step {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .ssl-install-step:hover {
            transform: translateY(-5px);
        }
        
        .ssl-install-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background-color: #FF204E;
            transition: height 0.3s ease;
        }
        
        .ssl-install-step:hover::before {
            height: 100%;
        }
        
        .ssl-pricing-card {
            transition: all 0.3s ease;
            border-top: 4px solid transparent;
        }
        
        .ssl-pricing-card:hover {
            transform: translateY(-10px);
            border-top-color: #FF204E;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .ssl-testimonial-card {
            position: relative;
            background: white;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .ssl-testimonial-card:hover {
            transform: translateY(-5px);
        }
        
        .ssl-testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 1rem;
            font-size: 4rem;
            font-family: serif;
            color: rgba(160, 21, 62, 0.1);
            line-height: 1;
        }
        
        .ssl-cta-section {
            background: linear-gradient(135deg, #A0153E 0%, #FF204E 100%);
            position: relative;
            overflow: hidden;
        }
        
        .ssl-cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            transform: rotate(30deg);
        }
        
        .ssl-badge-icon {
            transition: all 0.3s ease;
        }
        
        .ssl-badge-icon:hover {
            transform: scale(1.1);
        }