
        * {
            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: #fff;
            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: 15px 0;
        }

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

        .l7wf-nav-menu {
            display: flex;
            gap: 30px;
        }

        .l7wf-nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .l7wf-nav-link:hover {
            color: #007bff;
        }

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

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

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

        .l7wf-hero-description {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 40px;
            opacity: 0.8;
        }

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

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

        .l7wf-main-content {
            padding: 80px 0;
        }

        .l7wf-section {
            margin-bottom: 80px;
        }

        .l7wf-section-title {
            font-size: 2.5rem;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

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

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

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

        .l7wf-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .l7wf-feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
        }

        .l7wf-feature-title {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .l7wf-feature-description {
            color: #666;
            line-height: 1.7;
        }

        .l7wf-scenarios {
            background: white;
            padding: 60px 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .l7wf-scenarios-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .l7wf-scenario-item {
            padding: 25px;
            background: #f8f9fa;
            border-radius: 12px;
            border-left: 5px solid #667eea;
        }

        .l7wf-scenario-title {
            font-size: 1.2rem;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .l7wf-scenario-description {
            color: #666;
            font-size: 0.95rem;
        }

        .l7wf-advantages {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 80px 0;
            margin: 80px 0;
        }

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

        .l7wf-advantage-item {
            text-align: center;
            padding: 30px 20px;
        }

        .l7wf-advantage-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .l7wf-advantage-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .l7wf-advantage-description {
            opacity: 0.8;
        }

        .l7wf-cta-section {
            background: white;
            padding: 80px 40px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .l7wf-cta-title {
            font-size: 2.2rem;
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .l7wf-cta-description {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 40px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .l7wf-footer {
            background: #2c3e50;
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
        }

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

        .l7wf-footer-section h3 {
            margin-bottom: 20px;
            color: #ecf0f1;
        }

        .l7wf-footer-section p,
        .l7wf-footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            line-height: 1.8;
        }

        .l7wf-footer-section a:hover {
            color: #ecf0f1;
        }

        .l7wf-footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #34495e;
            color: #95a5a6;
        }

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

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

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

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

            .l7wf-container {
                padding: 0 15px;
            }
        }
    