    body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            margin: 0;
        }

        
        /* Security: Disable text selection and right click */
        body {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
        
        .hero-section .lead {
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Hero Statistics */
.hero-section .row.text-center h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.hero-section .row.text-center p {
    font-size: 0.95rem;
    margin-bottom: 0;
}
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            opacity: 0.5;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}
        

.hero-image {
    max-width: 50%;
    height: auto;
    animation: float 3s ease-in-out infinite !important;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    animation-play-state: paused;
    transform: scale(1.05);
}

.hero-section .text-center .hero-image,
.img.hero-image {
    animation: float 3s ease-in-out infinite !important;
    transition: transform 0.3s ease !important;
    will-change: transform;
}

.hero-section .text-center .hero-image:hover,
.img.hero-image:hover {
    animation-play-state: paused !important;
    transform: scale(1.05) !important;
}

.testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s;
            height: 100%;
            margin-bottom: 20px;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .testimonial-card.featured {
            border: 2px solid var(--secondary-color);
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
        }
        
        .featured-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--secondary-color);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        .stars {
            color: #ffc107;
        }
        
        .pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    position: relative;
    }
    
    .pricing-card.featured {
        border: 3px solid #97bf0d;
        transform: scale(1.05);
    }
    
    .pricing-badge {
        position: absolute;
        top: -15px;
        right: 30px;
        background: #97bf0d;
        color: white;
        padding: 8px 20px;
        border-radius: 30px;
        font-weight: 600;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    
    .price {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c5f2d;
    }
    .hero-card-image {
        animation: floatCard 3s ease-in-out infinite;
    }
    
    .hero-card-image:hover {
        animation-play-state: paused !important;
        transform: scale(1.1) !important;
    }
        
        /* Features Section */
        .features-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #e0e0e0;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin-bottom: 20px;
        }
        
        /* Pricing Section */
        .pricing-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, white, #f8f9fa);
        }
        
        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s;
        }
        
        .pricing-card:hover {
            transform: scale(1.05);
        }
        
        .pricing-card.featured {
            border: 3px solid var(--accent-color);
        }
        
        .pricing-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--accent-color);
            color: var(--dark-color);
            padding: 5px 40px;
            transform: rotate(45deg);
            font-weight: 600;
            font-size: 0.8rem;
        }
        
        .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        /* Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin: 20px;
        }
        
        .stars {
            color: var(--accent-color);
            font-size: 1.2rem;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), #1a4d1a);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        /* Buttons */
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        /* Navbar */
        .navbar-custom {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        /* Footer */
        footer {
            background: var(--dark-color);
            color: white;
            padding: 40px 0 20px;
        }
        
        footer a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        footer a:hover {
            color: var(--secondary-color);
        }
        
        /* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-section .lead {
        font-size: 1.1rem !important;
    }
    
    .hero-section .row.text-center h3 {
        font-size: 2rem !important;
    }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0 !important;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero-section .lead {
        font-size: 1rem !important;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    /* Statistics */
    .hero-section .row.text-center h3 {
        font-size: 1.8rem !important;
        margin-bottom: 3px;
    }
    
    .hero-section .row.text-center p {
        font-size: 0.85rem !important;
    }
    
    /* Buttons */
    .hero-section .btn-lg {
        padding: 10px 20px !important;
        font-size: 0.95rem !important;
    }
    
    /* Spacing */
    .hero-section .d-flex.gap-3 {
        gap: 0.75rem !important;
    }
    
    .hero-section .mt-5 {
        margin-top: 2rem !important;
    }
}

/* Extra Small Mobile (< 575px) */
@media (max-width: 575px) {
    .hero-section {
        padding: 40px 0 !important;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
        margin-bottom: 12px;
    }
    
    .hero-section .lead {
        font-size: 0.9rem !important;
        line-height: 1.4;
    }
    
    /* Statistics */
    .hero-section .row.text-center h3 {
        font-size: 1.5rem !important;
    }
    
    .hero-section .row.text-center p {
        font-size: 0.8rem !important;
    }
    
    /* Buttons Stack */
    .hero-section .d-flex.gap-3 {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .hero-section .btn {
        width: 100% !important;
    }
}

/* Landscape Mobile (max-height) */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        padding: 30px 0 !important;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
        margin-bottom: 10px;
    }
    
    .hero-section .lead {
        font-size: 0.85rem !important;
    }
    
    .hero-section .mt-5 {
        margin-top: 1rem !important;
    }
}