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

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

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

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

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

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

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

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

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

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

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

        .yzde-hero-cta {
            background: #ff6b6b;
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .yzde-hero-cta:hover {
            background: #ff5252;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255,107,107,0.3);
        }

        .yzde-main {
            padding: 80px 0;
        }

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

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

        .yzde-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;
        }

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

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

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

        .yzde-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;
        }

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

        .yzde-feature-desc {
            color: #666;
            line-height: 1.8;
        }

        .yzde-advantages {
            background: white;
            padding: 80px 0;
            margin: 80px 0;
        }

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

        .yzde-advantages-text h3 {
            font-size: 2rem;
            margin-bottom: 30px;
            color: #2c3e50;
        }

        .yzde-advantages-list {
            list-style: none;
        }

        .yzde-advantages-item {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .yzde-advantages-item::before {
            content: '✓';
            color: #28a745;
            font-weight: bold;
            margin-right: 15px;
            font-size: 1.2rem;
        }

        .yzde-advantages-image {
            text-align: center;
        }

        .yzde-advantages-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .yzde-scenarios {
            background: #f8f9fa;
            padding: 80px 0;
        }

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

        .yzde-scenario-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .yzde-scenario-card:hover {
            transform: translateY(-5px);
        }

        .yzde-scenario-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .yzde-scenario-desc {
            color: #666;
            line-height: 1.7;
        }

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

        .yzde-cta-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .yzde-cta-desc {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .yzde-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .yzde-cta-primary {
            background: #ff6b6b;
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .yzde-cta-secondary {
            background: transparent;
            color: white;
            padding: 15px 40px;
            border: 2px solid white;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .yzde-cta-primary:hover {
            background: #ff5252;
            transform: translateY(-2px);
        }

        .yzde-cta-secondary:hover {
            background: white;
            color: #667eea;
        }

        .yzde-footer {
            background: #2c3e50;
            color: white;
            padding: 50px 0 30px;
        }

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

        .yzde-footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #ecf0f1;
        }

        .yzde-footer-links {
            list-style: none;
        }

        .yzde-footer-links li {
            margin-bottom: 10px;
        }

        .yzde-footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .yzde-footer-links a:hover {
            color: #ecf0f1;
        }

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

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

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

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

            .yzde-advantages-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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