        /* CSS Variables */
        :root {
            --lp-primary-color: #667eea;
            --lp-primary-dark: #764ba2;
            --lp-primary-light: #8b9dff;
            --lp-bg-white: #ffffff;
            --lp-bg-light: #f7fafc;
            --lp-bg-lighter: #edf2f7;
            --lp-bg-dark: #1a202c;
            --lp-bg-darker: #2d3748;
            --lp-text-primary: #2d3748;
            --lp-text-secondary: #4a5568;
            --lp-text-muted: #718096;
            --lp-text-light: #cbd5e0;
            --lp-text-white: #ffffff;
            --lp-spacing-xs: 8px;
            --lp-spacing-sm: 16px;
            --lp-spacing-md: 24px;
            --lp-spacing-lg: 32px;
            --lp-spacing-xl: 48px;
            --lp-spacing-xxl: 64px;
            --lp-spacing-xxxl: 96px;
            --lp-radius-sm: 8px;
            --lp-radius-md: 12px;
            --lp-radius-lg: 16px;
            --lp-radius-xl: 24px;
            --lp-radius-full: 9999px;
            --lp-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
            --lp-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
            --lp-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
            --lp-shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
            --lp-transition-fast: 0.15s ease;
            --lp-transition-base: 0.3s ease;
            --lp-transition-slow: 0.5s ease;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--lp-text-primary);
        }

        /* Banner */
        .lp-banner {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            background: linear-gradient(135deg, var(--lp-primary-color) 0%, var(--lp-primary-dark) 100%);
        }

        .lp-banner__slide {
            display: none;
            width: 100%;
            height: 100%;
        }

        .lp-banner__slide.lp-active {
            display: block;
            animation: lpFadeIn 0.8s ease-in-out;
        }

        .lp-banner__image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .lp-banner__overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /*background: linear-gradient(135deg, rgba(106, 113, 136, 0.63) 0%, rgba(130, 116, 145, 0.507) 100%);*/
            /*background: linear-gradient(135deg, rgba(106, 113, 136, 0.2) 0%, rgba(130, 116, 145, 0.2) 100%);*/
            /*background: transparent;*/
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.4) 100%);

            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: var(--lp-spacing-md);
        }

        .lp-banner__content {
            max-width: 1024px;
            color: var(--lp-text-white);
        }

        .lp-banner__title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: var(--lp-spacing-md);
            line-height: 1.2;
            animation: lpSlideUp 0.8s ease-out;
        }

        .lp-banner__subtitle {
            font-size: 1.25rem;
            margin-bottom: var(--lp-spacing-lg);
            opacity: 0.95;
            animation: lpSlideUp 0.8s ease-out 0.2s backwards;
        }

        .lp-banner__cta {
            display: inline-block;
            padding: 15px 40px;
            background: var(--lp-bg-white);
            color: var(--lp-primary-color);
            text-decoration: none;
            border-radius: var(--lp-radius-full);
            font-weight: 600;
            font-size: 1rem;
            transition: all var(--lp-transition-base);
            animation: lpSlideUp 0.8s ease-out 0.4s backwards;
            box-shadow: var(--lp-shadow-lg);
        }

        .lp-banner__cta:hover {
            transform: translateY(-3px);
            box-shadow: var(--lp-shadow-xl);
        }

        .lp-banner__controls {
            position: absolute;
            bottom: var(--lp-spacing-lg);
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: var(--lp-spacing-sm);
            z-index: 10;
        }

        .lp-banner__control {
            background: rgba(255, 255, 255, 0.3);
            border: 2px solid var(--lp-bg-white);
            color: var(--lp-text-white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--lp-transition-base);
        }

        .lp-banner__control:hover {
            background: rgba(255, 255, 255, 0.5);
            transform: scale(1.1);
        }

        /* Section */
        .lp-section {
            padding: var(--lp-spacing-xxxl) var(--lp-spacing-md);
            background: var(--lp-bg-white);
        }

        .lp-section--alt {
            background: var(--lp-bg-light);
        }

        .lp-section__container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .lp-section__content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--lp-spacing-xxl);
            align-items: center;
        }

        .lp-section__content--reverse {
            direction: rtl;
        }

        .lp-section__content--reverse > * {
            direction: ltr;
        }

        .lp-section__text {
            padding: var(--lp-spacing-md);
        }

        .lp-section__title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--lp-text-primary);
            margin-bottom: var(--lp-spacing-md);
            line-height: 1.2;
        }

        .lp-section__description {
            font-size: 1.125rem;
            color: var(--lp-text-secondary);
            line-height: 1.8;
            margin-bottom: var(--lp-spacing-lg);
        }

        .lp-section__image {
            width: 100%;
            height: auto;
            border-radius: var(--lp-radius-lg);
            box-shadow: var(--lp-shadow-lg);
            transition: transform var(--lp-transition-base);
        }

        .lp-section__image:hover {
            transform: scale(1.02);
        }
        
        
        /* IMAGE CONTAINERS – improved visual depth */
	.lp-section__image,
	.lp-promo-card__image {
	    width: 100%;
	    height: auto;
	    object-fit: cover;
	    border-radius: var(--lp-radius-lg); /* Soft rounded corners */
	    box-shadow: var(--lp-shadow-lg); /* Adds subtle depth */
	    transition: transform var(--lp-transition-base), box-shadow var(--lp-transition-base);
	}
	
	/* Hover effect for smooth zoom */
	.lp-section__image:hover,
	.lp-promo-card:hover .lp-promo-card__image {
	    transform: scale(1.03);
	    box-shadow: var(--lp-shadow-xl);
	}
	
	
        .lp-section__buttons {
            display: flex;
            gap: var(--lp-spacing-sm);
            flex-wrap: wrap;
        }

        .lp-btn {
            display: inline-block;
            padding: 12px 32px;
            background: linear-gradient(135deg, var(--lp-primary-color) 0%, var(--lp-primary-dark) 100%);
            color: var(--lp-text-white);
            text-decoration: none;
            border-radius: var(--lp-radius-full);
            font-weight: 600;
            font-size: 0.95rem;
            transition: all var(--lp-transition-base);
            border: none;
            cursor: pointer;
            box-shadow: var(--lp-shadow-md);
        }

        .lp-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--lp-shadow-lg);
        }

        .lp-btn--outline {
            background: transparent;
            color: var(--lp-primary-color);
            border: 2px solid var(--lp-primary-color);
        }

        .lp-btn--outline:hover {
            background: var(--lp-primary-color);
            color: var(--lp-text-white);
        }
        
 
	 /* BUTTON ENHANCEMENTS – consistent modern style */
	.lp-btn {
	    display: inline-block;
	    padding: 12px 32px;
	    background: linear-gradient(135deg, var(--lp-primary-color) 0%, var(--lp-primary-dark) 100%);
	    color: var(--lp-text-white);
	    border: none;
	    border-radius: var(--lp-radius-full); /* Full pill shape */
	    font-weight: 600;
	    font-size: 0.95rem;
	    text-decoration: none;
	    cursor: pointer;
	    transition: all var(--lp-transition-base);
	    box-shadow: var(--lp-shadow-md);
	}
	
	.lp-btn:hover {
	    transform: translateY(-3px);
	    box-shadow: var(--lp-shadow-lg);
	}
	
	.lp-btn--outline {
	    background: transparent;
	    color: var(--lp-primary-color);
	    border: 2px solid var(--lp-primary-color);
	    box-shadow: none;
	}
	
	.lp-btn--outline:hover {
	    background: var(--lp-primary-color);
	    color: var(--lp-text-white);
	    box-shadow: var(--lp-shadow-md);
	}       
	        
        
        
        
        

        /* Promotions */
        .lp-promotions {
            padding: var(--lp-spacing-xxxl) 0;
            background: linear-gradient(to bottom, var(--lp-bg-light), var(--lp-bg-lighter));
            overflow: hidden;
        }

        .lp-promotions__header {
            text-align: center;
            max-width: 1024px;
            margin: 0 auto var(--lp-spacing-xxl);
            padding: 0 var(--lp-spacing-md);
        }

        .lp-promotions__title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--lp-text-primary);
            margin-bottom: var(--lp-spacing-sm);
        }

        .lp-promotions__subtitle {
            font-size: 1.125rem;
            color: var(--lp-text-muted);
        }

        .lp-promotions__slider {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .lp-promotions__track {
            display: flex;
            gap: var(--lp-spacing-lg);
            animation: lpSlide 30s linear infinite;
            width: fit-content;
        }

        .lp-promotions__track:hover {
            animation-play-state: paused;
        }

        .lp-promo-card {
            flex: 0 0 350px;
            background: var(--lp-bg-white);
            border-radius: var(--lp-radius-lg);
            overflow: hidden;
            box-shadow: var(--lp-shadow-md);
            transition: all var(--lp-transition-base);
            cursor: pointer;
        }

        .lp-promo-card:hover {
            transform: scale(1.05);
            box-shadow: var(--lp-shadow-xl);
        }

        .lp-promo-card__image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .lp-promo-card__content {
            padding: var(--lp-spacing-md);
        }

        .lp-promo-card__badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--lp-primary-color) 0%, var(--lp-primary-dark) 100%);
            color: var(--lp-text-white);
            padding: 6px 12px;
            border-radius: var(--lp-radius-full);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: var(--lp-spacing-xs);
        }

        .lp-promo-card__title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--lp-text-primary);
            margin-bottom: var(--lp-spacing-xs);
        }

        .lp-promo-card__description {
            font-size: 0.95rem;
            color: var(--lp-text-muted);
            line-height: 1.5;
        }
        
        
	 .lp-promo-card {
	    border-radius: var(--lp-radius-lg);
	    overflow: hidden;
	    box-shadow: var(--lp-shadow-md);
	    transition: transform var(--lp-transition-base), box-shadow var(--lp-transition-base);
	}
	
	.lp-promo-card:hover {
	    transform: translateY(-4px) scale(1.03);
	    box-shadow: var(--lp-shadow-xl);
	}       
	        
        
        

        /* Footer */
        .lp-footer {
            background: var(--lp-bg-dark);
            color: var(--lp-text-light);
            padding: var(--lp-spacing-xxl) var(--lp-spacing-md) var(--lp-spacing-lg);
        }

        .lp-footer__container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .lp-footer__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--lp-spacing-xl);
            margin-bottom: var(--lp-spacing-xl);
        }

        .lp-footer__column-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--lp-text-white);
            margin-bottom: var(--lp-spacing-md);
        }

        .lp-footer__links {
            list-style: none;
        }

        .lp-footer__link-item {
            margin-bottom: var(--lp-spacing-sm);
        }

        .lp-footer__link {
            color: var(--lp-text-light);
            text-decoration: none;
            transition: color var(--lp-transition-fast);
            font-size: 0.95rem;
        }

        .lp-footer__link:hover {
            color: var(--lp-primary-light);
        }

        .lp-footer__description {
            color: var(--lp-text-light);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .lp-footer__social {
            display: flex;
            gap: var(--lp-spacing-sm);
            margin-top: var(--lp-spacing-md);
            flex-wrap: wrap;
        }

        .lp-footer__social-link {
            width: 40px;
            height: 40px;
            background: var(--lp-bg-darker);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--lp-text-white);
            text-decoration: none;
            transition: all var(--lp-transition-base);
        }

        .lp-footer__social-link:hover {
            background: var(--lp-primary-color);
            transform: translateY(-3px);
        }

        .lp-footer__bottom {
            border-top: 1px solid var(--lp-bg-darker);
            padding-top: var(--lp-spacing-lg);
            text-align: center;
        }

        .lp-footer__copyright {
            color: var(--lp-text-light);
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes lpFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes lpSlideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes lpSlide {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .lp-banner {
                height: 500px;
            }
            .lp-banner__title {
                font-size: 2rem;
            }
            .lp-banner__subtitle {
                font-size: 1rem;
            }
            .lp-section__content {
                grid-template-columns: 1fr;
                gap: var(--lp-spacing-lg);
            }
            .lp-section__content--reverse {
                direction: ltr;
            }
            .lp-section__title {
                font-size: 2rem;
            }
            .lp-promo-card {
                flex: 0 0 280px;
            }
            .lp-promotions__title {
                font-size: 2rem;
            }
        }

/* WORKING CSS SECTION END HERE */











    /* ==========================================================================
   Global Variables & Theme System
   ========================================================================== */
/* Define base variables. These can be overridden dynamically. */
 /* DEFAULT LIGHT THEME */
        :root,
        .mh-theme-light {
            /* Brand Colors */
            --mh-primary: #667eea;
            --mh-primary-dark: #5568d3;
            --mh-primary-light: #7c8ff0;
            
            /* Background Colors */
            --mh-bg-main: #ffffff;
            --mh-bg-secondary: #f7fafc;
            --mh-bg-hover: #edf2f7;
            
            /* Text Colors */
            --mh-text-primary: #2d3748;
            --mh-text-secondary: #4a5568;
            --mh-text-muted: #718096;
            --mh-text-white: #ffffff;
            
            /* Border & Shadow */
            --mh-border: #e2e8f0;
            --mh-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            --mh-shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
            
            /* Header Specific */
            --mh-header-bg: #ffffff;
            --mh-logo-color: #667eea;
            --mh-nav-color: #2d3748;
            --mh-nav-hover: #667eea;
        }
        
        /* DARK THEME */
        .mh-theme-dark {
            /* Brand Colors (slightly adjusted for dark) */
            --mh-primary: #8b9dff;
            --mh-primary-dark: #7c8ff0;
            --mh-primary-light: #a0aeff;
            
            /* Background Colors */
            --mh-bg-main: #1a202c;
            --mh-bg-secondary: #2d3748;
            --mh-bg-hover: #4a5568;
            
            /* Text Colors */
            --mh-text-primary: #f7fafc;
            --mh-text-secondary: #e2e8f0;
            --mh-text-muted: #cbd5e0;
            --mh-text-white: #ffffff;
            
            /* Border & Shadow */
            --mh-border: #4a5568;
            --mh-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            --mh-shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.4);
            
            /* Header Specific */
            --mh-header-bg: #2d3748;
            --mh-logo-color: #8b9dff;
            --mh-nav-color: #f7fafc;
            --mh-nav-hover: #8b9dff;
        }
        
        /* BLUE THEME (Optional - for multi-tenant) */
        .mh-theme-blue {
            --mh-primary: #3182ce;
            --mh-primary-dark: #2c5aa0;
            --mh-primary-light: #4299e1;
            --mh-logo-color: #3182ce;
            --mh-nav-hover: #3182ce;
        }
        
        /* GREEN THEME (Optional - for multi-tenant) */
        .mh-theme-green {
            --mh-primary: #48bb78;
            --mh-primary-dark: #38a169;
            --mh-primary-light: #68d391;
            --mh-logo-color: #48bb78;
            --mh-nav-hover: #48bb78;
        }
        
        /* ============================================
           SECTION 2: BASE RESET & BODY
           ============================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            background-color: var(--mh-bg-main);
            color: var(--mh-text-primary);
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        
        /* ============================================
           SECTION 3: MODERN HEADER STYLES
           Prefix: .mh-* (Modern Header)
           Copy this entire section to header_modern.css
           ============================================ */
        
        .mh-header {
            background-color: var(--mh-header-bg);
            box-shadow: var(--mh-shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .mh-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        
        /* ===== LOGO SECTION ===== */
        .mh-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        
        .mh-logo__image {
            max-width: 50px;
            max-height: 50px;
            width: auto;
            height: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .mh-logo__image:hover {
            transform: scale(1.05);
        }
        
        .mh-logo__text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--mh-logo-color);
            transition: color 0.3s ease;
        }
        
        .mh-logo:hover .mh-logo__text {
            color: var(--mh-primary-dark);
        }
        
        /* ===== NAVIGATION MENU ===== */
        .mh-nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .mh-nav__link {
            position: relative;
            padding: 10px 16px;
            color: var(--mh-nav-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .mh-nav__link:hover {
            color: var(--mh-nav-hover);
            background-color: var(--mh-bg-hover);
        }
        
        /* Active link indicator */
        .mh-nav__link::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 16px;
            right: 16px;
            height: 2px;
            background-color: var(--mh-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .mh-nav__link:hover::after {
            transform: scaleX(1);
        }
        
        /* Special button-style link */
        .mh-nav__link--primary {
            background: linear-gradient(135deg, var(--mh-primary) 0%, var(--mh-primary-dark) 100%);
            color: var(--mh-text-white);
            padding: 10px 24px;
            border-radius: 25px;
            margin-left: 8px;
        }
        
        .mh-nav__link--primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--mh-shadow-lg);
        }
        
        .mh-nav__link--primary::after {
            display: none;
        }
        
        /* User welcome text */
        .mh-nav__user {
            color: var(--mh-text-secondary);
            font-size: 0.9rem;
            padding: 8px 12px;
            background-color: var(--mh-bg-secondary);
            border-radius: 6px;
            margin-right: 8px;
        }
        
        .mh-nav__user span {
            color: var(--mh-primary);
            font-weight: 600;
        }
        
        /* ===== THEME TOGGLE BUTTON ===== */
        .mh-theme-toggle {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: var(--mh-bg-secondary);
            border: 2px solid var(--mh-border);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            margin-left: 12px;
        }
        
        .mh-theme-toggle:hover {
            background-color: var(--mh-bg-hover);
            transform: rotate(20deg) scale(1.1);
            border-color: var(--mh-primary);
        }
        
        .mh-theme-toggle svg {
            width: 20px;
            height: 20px;
            fill: var(--mh-text-primary);
            transition: fill 0.3s ease;
        }
        
        /* Hide sun icon in light theme, moon in dark */
        .mh-theme-light .mh-theme-toggle .mh-icon-moon {
            display: block;
        }
        .mh-theme-light .mh-theme-toggle .mh-icon-sun {
            display: none;
        }
        
        .mh-theme-dark .mh-theme-toggle .mh-icon-moon {
            display: none;
        }
        .mh-theme-dark .mh-theme-toggle .mh-icon-sun {
            display: block;
        }
        
        /* ===== MOBILE MENU TOGGLE ===== */
        .mh-mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
            transition: background-color 0.3s ease;
        }
        
        .mh-mobile-toggle:hover {
            background-color: var(--mh-bg-hover);
        }
        
        .mh-mobile-toggle span {
            width: 24px;
            height: 3px;
            background-color: var(--mh-text-primary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        /* Animated hamburger to X */
        .mh-mobile-toggle.mh-active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }
        
        .mh-mobile-toggle.mh-active span:nth-child(2) {
            opacity: 0;
        }
        
        .mh-mobile-toggle.mh-active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        /* ===== MOBILE MENU ===== */
        .mh-mobile-menu {
            display: none;
            position: absolute;
            top: 70px;
            left: 0;
            right: 0;
            background-color: var(--mh-header-bg);
            box-shadow: var(--mh-shadow-lg);
            background: hidden;
            padding: 16px 24px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .mh-mobile-menu.mh-active {
            max-height: 600px;
        }
        
        .mh-mobile-menu .mh-nav__link {
            display: block;
            padding: 12px 16px;
            margin-bottom: 4px;
            border-radius: 6px;
        }
        
        .mh-mobile-menu .mh-nav__link::after {
            display: none;
        }
        
        .mh-mobile-menu .mh-nav__user {
            display: block;
            margin-bottom: 12px;
        }
        
        /* ============================================
           SECTION 4: RESPONSIVE BREAKPOINTS
           ============================================ */
        
        /* Tablet */
        @media (max-width: 1024px) {
            .mh-container {
                padding: 0 20px;
            }
            
            .mh-nav__link {
                padding: 10px 12px;
                font-size: 0.9rem;
            }
        }
        
        /* Mobile */
        @media (max-width: 768px) {
            .mh-container {
                height: 60px;
            }
            
            .mh-nav {
                display: none;
            }
            
            .mh-mobile-toggle {
                display: flex;
            }
            
            .mh-mobile-menu {
                display: block;
            }
            
            .mh-logo__text {
                font-size: 1.2rem;
            }
            
            .mh-logo__image {
                max-width: 40px;
                max-height: 40px;
            }
        }
        
        /* Small Mobile */
        @media (max-width: 480px) {
            .mh-container {
                padding: 0 16px;
            }
            
            .mh-logo__text {
                font-size: 1rem;
            }
        }
        
        /* ============================================
           SECTION 5: DEMO PAGE CONTENT
           (Remove this section in production)
           ============================================ */
        
        .demo-content {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 24px;
        }
        
        .demo-section {
            background-color: var(--mh-bg-secondary);
            padding: 40px;
            border-radius: 12px;
            margin-bottom: 40px;
            box-shadow: var(--mh-shadow);
            transition: all 0.3s ease;
        }
        
        .demo-section h2 {
            color: var(--mh-text-primary);
            margin-bottom: 16px;
        }
        
        .demo-section p {
            color: var(--mh-text-secondary);
            line-height: 1.8;
        }
        
        .demo-label {
            background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
            color: white;
            padding: 12px 24px;
            text-align: center;
            font-weight: bold;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
        }
        
        .code-block {
            background-color: #1a1a1a;
            color: #00ff00;
            padding: 20px;
            border-radius: 8px;
            overflow-x: auto;
            font-family: 'Courier New', monospace;
            margin: 20px 0;
        }
        
        
        .lp-section__image {
            width: 100%;
            max-height: 400px;
            height: auto;
            object-fit: cover;
            border-radius: var(--lp-radius-lg);
            box-shadow: var(--lp-shadow-lg);
            transition: transform var(--lp-transition-base);
        }



	/* ===================== TEXT & PARAGRAPH STYLING OCTOBER 13 2025 ===================== */
	p {
	    font-size: 1rem; /* Base size for readability */
	    line-height: 1.7; /* Better spacing between lines */
	    color: var(--lp-text-dark); /* Ensures text contrast */
	    margin-bottom: 1.2em; /* Spacing between paragraphs */
	    font-weight: 400; /* Clean and balanced weight */
	    letter-spacing: 0.2px; /* Slight spacing for better clarity */
	}
	
	/* Paragraphs inside dark sections (like banners or footers) */
	.section-dark p,
	.lp-banner p,
	footer p {
	    color: var(--lp-text-light); /* Switch to lighter text on dark backgrounds */
	}
	
	/* Paragraphs inside promotional cards */
	.lp-promo-card p {
	    color: var(--lp-text-dark);
	    font-size: 0.95rem; /* Slightly smaller to balance the card space */
	    line-height: 1.6;
	}
	
	/* Responsive adjustments for small screens */
	@media (max-width: 768px) {
	    p {
	        font-size: 0.95rem; /* Slightly smaller for mobile */
	        line-height: 1.6;
	    }
	}


       
        
    /*ADDING BLUR AROUND BANNER HEADER AND BANNER DETAILS TEXT OCTOBER 12 2025*/
    .banner-text {
        background: rgba(0, 0, 0, 0.25); /* Subtle shade */
        padding: 30px 50px;
        border-radius: 15px;
        color: white;
        backdrop-filter: blur(2px); /* Very light blur */
        -webkit-backdrop-filter: blur(2px); /* Safari support */
        border: 1px solid rgba(255, 255, 255, 0.25);
        transition: all 0.3s ease;
        display: inline-block;
        max-width: 90%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Adds depth without darkness */
    }
    
    /* Add text shadow for extra pop on white banners */
    .banner-text .lp-banner__title {
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    }
    
    .banner-text .lp-banner__subtitle {
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    }
    
    /* Mobile responsive */
    @media (max-width: 768px) {
        .banner-text {
            padding: 20px 30px;
            max-width: 95%;
        }
    }
    
    
    
    
    
    
    
    
    
    
    
    
 
