
        * {
            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: #f8f9fa;
        }

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

        .l7wf-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .l7wf-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .l7wf-logo {
            display: flex;
            align-items: center;
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .l7wf-logo img {
            height: 40px;
            margin-right: 10px;
        }

        .l7wf-nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .l7wf-nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }

        .l7wf-nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }

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

        .l7wf-hero-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .l7wf-hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .l7wf-hero-image {
            max-width: 600px;
            width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            margin-top: 2rem;
        }

        .l7wf-main {
            padding: 4rem 0;
        }

        .l7wf-section {
            margin-bottom: 4rem;
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .l7wf-section-title {
            font-size: 2.2rem;
            color: #667eea;
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
        }

        .l7wf-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 2px;
        }

        .l7wf-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .l7wf-feature-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .l7wf-feature-card:hover {
            transform: translateY(-5px);
            border-color: #667eea;
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
        }

        .l7wf-feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #667eea;
        }

        .l7wf-feature-title {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: #333;
        }

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

        .l7wf-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .l7wf-step {
            text-align: center;
            position: relative;
        }

        .l7wf-step-number {
            display: inline-block;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border-radius: 50%;
            line-height: 60px;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .l7wf-step-title {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .l7wf-step-desc {
            color: #666;
        }

        .l7wf-advantages {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .l7wf-advantage {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid #667eea;
        }

        .l7wf-advantage-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: #667eea;
            margin-bottom: 1rem;
        }

        .l7wf-advantage-desc {
            color: #666;
        }

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

        .l7wf-cta-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .l7wf-cta-desc {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .l7wf-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .l7wf-btn {
            display: inline-block;
            padding: 1rem 2rem;
            background: white;
            color: #667eea;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .l7wf-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }

        .l7wf-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .l7wf-btn-secondary:hover {
            background: white;
            color: #667eea;
        }

        .l7wf-footer {
            background: #2c3e50;
            color: white;
            padding: 3rem 0 1rem;
        }

        .l7wf-footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .l7wf-footer-section h3 {
            margin-bottom: 1rem;
            color: #667eea;
        }

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

        .l7wf-footer-section ul li {
            margin-bottom: 0.5rem;
        }

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

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

        .l7wf-footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
        }

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

            .l7wf-hero-title {
                font-size: 2rem;
            }

            .l7wf-hero-subtitle {
                font-size: 1.1rem;
            }

            .l7wf-section {
                padding: 2rem 1rem;
            }

            .l7wf-cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
    