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

        body {
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

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

        .kubwen-header {
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

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

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

        .kubwen-logo-section img {
            height: 40px;
            margin-right: 15px;
        }

        .kubwen-brand-text {
            color: white;
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
        }

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

        .kubwen-nav-link {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

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

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

        .kubwen-hero-title {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .kubwen-hero-subtitle {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .kubwen-cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3);
            transition: all 0.3s ease;
        }

        .kubwen-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(238, 90, 36, 0.4);
        }

        .kubwen-main-content {
            padding: 60px 0;
            background: white;
        }

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

        .kubwen-feature-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }

        .kubwen-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .kubwen-feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #4a90e2, #357abd);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
            color: white;
        }

        .kubwen-feature-title {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #2c3e50;
        }

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

        .kubwen-intro-section {
            background: #f8f9fa;
            padding: 60px 0;
        }

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

        .kubwen-intro-text h2 {
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 25px;
        }

        .kubwen-intro-text p {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .kubwen-intro-image {
            text-align: center;
        }

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

        .kubwen-stats-section {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 60px 0;
        }

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

        .kubwen-stat-item {
            padding: 20px;
        }

        .kubwen-stat-number {
            font-size: 48px;
            font-weight: bold;
            color: #3498db;
            margin-bottom: 10px;
        }

        .kubwen-stat-label {
            font-size: 18px;
            opacity: 0.9;
        }

        .kubwen-cta-section {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .kubwen-cta-title {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .kubwen-cta-desc {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .kubwen-footer {
            background: #2c3e50;
            color: white;
            padding: 40px 0 20px;
        }

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

        .kubwen-footer-section h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #3498db;
        }

        .kubwen-footer-section p,
        .kubwen-footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            margin-bottom: 10px;
            display: block;
        }

        .kubwen-footer-section a:hover {
            color: #3498db;
        }

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

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

            .kubwen-hero-title {
                font-size: 32px;
            }

            .kubwen-intro-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .kubwen-content-grid {
                grid-template-columns: 1fr;
            }
        }
    