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

        html {
            scroll-behavior: smooth;
        }

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

        /* Header and Navigation */
        .dljb8-header {
            background: linear-gradient(135deg, #0088cc 0%, #005fa3 100%);
            color: white;
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .dljb8-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 40px;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .dljb8-logo {
            flex-shrink: 0;
        }

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

        .dljb8-nav-menu {
            display: flex;
            gap: 30px;
            align-items: center;
            list-style: none;
        }

        .dljb8-nav-menu a {
            color: white;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: opacity 0.3s ease;
            white-space: nowrap;
        }

        .dljb8-nav-menu a:hover {
            opacity: 0.8;
        }

        .dljb8-cta-button {
            background: white;
            color: #0088cc;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .dljb8-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .dljb8-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .dljb8-menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .dljb8-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .dljb8-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .dljb8-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .dljb8-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .dljb8-nav-overlay.active {
            display: block;
        }

        /* Hero Section */
        .dljb8-hero {
            background: linear-gradient(135deg, #0088cc 0%, #005fa3 100%);
            color: white;
            padding: 100px 40px;
            text-align: center;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .dljb8-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            animation: dljb8-float 6s ease-in-out infinite;
        }

        .dljb8-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
            animation: dljb8-float 8s ease-in-out infinite;
        }

        @keyframes dljb8-float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(30px); }
        }

        .dljb8-hero-content {
            max-width: 800px;
            position: relative;
            z-index: 2;
            animation: dljb8-fadeInUp 0.8s ease-out;
        }

        @keyframes dljb8-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dljb8-hero-title {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .dljb8-hero-subtitle {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.95;
            line-height: 1.6;
        }

        .dljb8-hero-image {
            margin-top: 60px;
            width: 100%;
            max-width: 500px;
            border-radius: 15px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .dljb8-hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .dljb8-primary-btn {
            background: white;
            color: #0088cc;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

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

        .dljb8-secondary-btn {
            background: transparent;
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            border: 2px solid white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dljb8-secondary-btn:hover {
            background: white;
            color: #0088cc;
        }

        /* Features Section */
        .dljb8-features {
            padding: 100px 40px;
            max-width: 1400px;
            margin: 0 auto;
            background: white;
        }

        .dljb8-section-title {
            text-align: center;
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            color: #333;
        }

        .dljb8-section-subtitle {
            text-align: center;
            font-size: 18px;
            color: #666;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .dljb8-feature-card {
            padding: 40px;
            background: #f8f9fa;
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
        }

        .dljb8-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 136, 204, 0.1);
            border-color: #0088cc;
        }

        .dljb8-feature-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: block;
        }

        .dljb8-feature-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #333;
        }

        .dljb8-feature-desc {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
        }

        /* Stats Section */
        .dljb8-stats {
            background: linear-gradient(135deg, #0088cc 0%, #005fa3 100%);
            color: white;
            padding: 80px 40px;
        }

        .dljb8-stats-container {
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .dljb8-stat-item {
            animation: dljb8-fadeInUp 0.8s ease-out;
        }

        .dljb8-stat-number {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 10px;
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 10px;
        }

        .dljb8-stat-unit {
            font-size: 24px;
            font-weight: 600;
        }

        .dljb8-stat-label {
            font-size: 16px;
            opacity: 0.95;
        }

        /* Products Section */
        .dljb8-products {
            padding: 100px 40px;
            max-width: 1400px;
            margin: 0 auto;
            background: white;
        }

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

        .dljb8-product-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 50px 35px;
            border-radius: 15px;
            border: 2px solid #e0e0e0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .dljb8-product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #0088cc 0%, #005fa3 100%);
        }

        .dljb8-product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 136, 204, 0.15);
            border-color: #0088cc;
        }

        .dljb8-product-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #333;
        }

        .dljb8-product-desc {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .dljb8-product-highlight {
            background: #e3f2fd;
            color: #0088cc;
            padding: 12px 16px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
        }

        /* Scenarios Section */
        .dljb8-scenarios {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 100px 40px;
        }

        .dljb8-scenarios-container {
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .dljb8-scenario-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-left: 4px solid #0088cc;
        }

        .dljb8-scenario-card:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 40px rgba(0, 136, 204, 0.15);
        }

        .dljb8-scenario-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .dljb8-scenario-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #333;
        }

        .dljb8-scenario-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
        }

        /* Tech Advantages Section */
        .dljb8-tech {
            padding: 100px 40px;
            max-width: 1400px;
            margin: 0 auto;
            background: white;
        }

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

        .dljb8-tech-card {
            background: linear-gradient(135deg, #f0f7ff 0%, #f8f9fa 100%);
            padding: 40px;
            border-radius: 15px;
            border: 1px solid #e0e8ff;
            transition: all 0.3s ease;
        }

        .dljb8-tech-card:hover {
            border-color: #0088cc;
            box-shadow: 0 15px 40px rgba(0, 136, 204, 0.1);
        }

        .dljb8-tech-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #0088cc;
        }

        .dljb8-tech-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
        }

        /* Testimonials Section */
        .dljb8-testimonials {
            background: linear-gradient(135deg, #0088cc 0%, #005fa3 100%);
            color: white;
            padding: 100px 40px;
        }

        .dljb8-testimonials-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .dljb8-testimonials-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 60px;
            text-align: center;
        }

        .dljb8-testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .dljb8-testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .dljb8-testimonial-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .dljb8-testimonial-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .dljb8-testimonial-avatar {
            font-size: 40px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
        }

        .dljb8-testimonial-info {
            flex: 1;
        }

        .dljb8-testimonial-name {
            font-weight: 700;
            font-size: 15px;
            margin-bottom: 3px;
        }

        .dljb8-testimonial-title {
            font-size: 13px;
            opacity: 0.85;
        }

        .dljb8-testimonial-rating {
            display: flex;
            gap: 3px;
            margin-bottom: 12px;
        }

        .dljb8-star {
            color: #ffc107;
            font-size: 14px;
        }

        .dljb8-testimonial-content {
            font-size: 14px;
            line-height: 1.7;
            opacity: 0.95;
        }

        /* News Section */
        .dljb8-news {
            padding: 100px 40px;
            max-width: 1400px;
            margin: 0 auto;
            background: white;
        }

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

        .dljb8-news-card {
            background: #f8f9fa;
            padding: 35px;
            border-radius: 15px;
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
        }

        .dljb8-news-card:hover {
            border-color: #0088cc;
            box-shadow: 0 15px 40px rgba(0, 136, 204, 0.1);
            transform: translateY(-5px);
        }

        .dljb8-news-date {
            color: #0088cc;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .dljb8-news-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #333;
            line-height: 1.4;
        }

        .dljb8-news-summary {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
        }

        /* CTA Section */
        .dljb8-cta-section {
            background: linear-gradient(135deg, #0088cc 0%, #005fa3 100%);
            color: white;
            padding: 100px 40px;
            text-align: center;
        }

        .dljb8-cta-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .dljb8-cta-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .dljb8-cta-text {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.95;
            line-height: 1.6;
        }

        /* Footer */
        .dljb8-footer {
            background: #1a1a1a;
            color: #fff;
            padding: 60px 40px 30px;
        }

        .dljb8-footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .dljb8-footer-section h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

        .dljb8-footer-section ul li {
            margin-bottom: 12px;
        }

        .dljb8-footer-section a {
            color: #bbb;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .dljb8-footer-section a:hover {
            color: #0088cc;
        }

        .dljb8-footer-brand {
            margin-bottom: 20px;
            font-size: 20px;
            font-weight: 700;
            color: white;
        }

        .dljb8-footer-desc {
            font-size: 14px;
            color: #bbb;
            line-height: 1.6;
        }

        .dljb8-footer-bottom {
            border-top: 1px solid #333;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .dljb8-footer-copyright {
            font-size: 13px;
            color: #888;
        }

        .dljb8-footer-social {
            display: flex;
            gap: 20px;
        }

        .dljb8-social-link {
            width: 40px;
            height: 40px;
            background: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .dljb8-social-link:hover {
            background: #0088cc;
            transform: translateY(-3px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .dljb8-menu-toggle {
                display: flex;
            }

            .dljb8-nav-menu {
                display: none;
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                flex-direction: column;
                background: linear-gradient(135deg, #0088cc 0%, #005fa3 100%);
                padding: 30px 20px;
                gap: 15px;
                z-index: 1001;
                max-height: calc(100vh - 60px);
                overflow-y: auto;
            }

            .dljb8-nav-menu.active {
                display: flex;
            }

            .dljb8-nav {
                padding: 15px 20px;
            }

            .dljb8-hero {
                padding: 60px 20px;
                min-height: auto;
            }

            .dljb8-hero-title {
                font-size: 36px;
            }

            .dljb8-hero-subtitle {
                font-size: 16px;
            }

            .dljb8-hero-buttons {
                flex-direction: column;
            }

            .dljb8-primary-btn,
            .dljb8-secondary-btn {
                width: 100%;
            }

            .dljb8-section-title {
                font-size: 32px;
            }

            .dljb8-features,
            .dljb8-products,
            .dljb8-scenarios,
            .dljb8-tech,
            .dljb8-news {
                padding: 60px 20px;
            }

            .dljb8-stats {
                padding: 60px 20px;
            }

            .dljb8-stats-grid {
                gap: 30px;
            }

            .dljb8-stat-number {
                font-size: 36px;
            }

            .dljb8-testimonials {
                padding: 60px 20px;
            }

            .dljb8-testimonials-title {
                font-size: 32px;
                margin-bottom: 40px;
            }

            .dljb8-cta-section {
                padding: 60px 20px;
            }

            .dljb8-cta-title {
                font-size: 32px;
            }

            .dljb8-footer-content {
                gap: 30px;
            }

            .dljb8-footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 480px) {
            .dljb8-hero-title {
                font-size: 28px;
            }

            .dljb8-hero-subtitle {
                font-size: 14px;
            }

            .dljb8-section-title {
                font-size: 26px;
            }

            .dljb8-stat-number {
                font-size: 28px;
            }

            .dljb8-feature-card,
            .dljb8-product-card,
            .dljb8-scenario-card {
                padding: 25px;
            }

            .dljb8-testimonials-grid {
                grid-template-columns: 1fr;
            }
        }
    