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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }

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

        .l8uo-header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .l8uo-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .l8uo-logo {
            display: flex;
            align-items: center;
        }

        .l8uo-logo img {
            height: 40px;
            width: auto;
        }

        .l8uo-nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .l8uo-nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 10px 0;
        }

        .l8uo-nav-link:hover {
            color: #4285f4;
        }

        .l8uo-main {
            margin-top: 80px;
        }

        .l8uo-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .l8uo-hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .l8uo-hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .l8uo-cta-button {
            display: inline-block;
            background: #ff6b6b;
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255,107,107,0.4);
        }

        .l8uo-cta-button:hover {
            background: #ff5252;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,107,107,0.6);
        }

        .l8uo-features {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .l8uo-section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: #333;
        }

        .l8uo-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .l8uo-feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .l8uo-feature-card:hover {
            transform: translateY(-5px);
        }

        .l8uo-feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #4285f4, #34a853);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }

        .l8uo-feature-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
        }

        .l8uo-feature-desc {
            color: #666;
            line-height: 1.6;
        }

        .l8uo-about {
            padding: 80px 0;
        }

        .l8uo-about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .l8uo-about-text h2 {
            font-size: 2.2rem;
            margin-bottom: 30px;
            color: #333;
        }

        .l8uo-about-text p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 20px;
        }

        .l8uo-about-image {
            text-align: center;
        }

        .l8uo-about-image img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .l8uo-stats {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 0;
        }

        .l8uo-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .l8uo-stat-item h3 {
            font-size: 3rem;
            margin-bottom: 10px;
        }

        .l8uo-stat-item p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .l8uo-cta-section {
            background: #f8f9fa;
            padding: 80px 0;
            text-align: center;
        }

        .l8uo-cta-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #333;
        }

        .l8uo-cta-desc {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 40px;
        }

        .l8uo-footer {
            background: #333;
            color: white;
            padding: 60px 0 30px;
        }

        .l8uo-footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .l8uo-footer-section h3 {
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .l8uo-footer-section ul {
            list-style: none;
        }

        .l8uo-footer-section ul li {
            margin-bottom: 10px;
        }

        .l8uo-footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .l8uo-footer-section ul li a:hover {
            color: white;
        }

        .l8uo-footer-bottom {
            border-top: 1px solid #555;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #ccc;
        }

        @media (max-width: 768px) {
            .l8uo-nav-menu {
                display: none;
            }

            .l8uo-hero-title {
                font-size: 2.5rem;
            }

            .l8uo-about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .l8uo-features-grid {
                grid-template-columns: 1fr;
            }

            .l8uo-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .l8uo-hero-title {
                font-size: 2rem;
            }

            .l8uo-stats-grid {
                grid-template-columns: 1fr;
            }
        }
    