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

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

        /* Header & Navigation */
        .dljb8-header {
            background: #fff;
            border-bottom: 1px solid #e5e5e5;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .dljb8-nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

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

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

        .dljb8-menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: #0088cc;
            margin: 4px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

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

        .dljb8-nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 15px;
        }

        .dljb8-nav-menu a:hover,
        .dljb8-nav-menu a.active {
            color: #0088cc;
        }

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

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

        /* Feature Header Section */
        .dljb8-feature-header {
            background: linear-gradient(135deg, #0088cc 0%, #005a99 100%);
            color: white;
            padding: 60px 20px 40px;
            text-align: center;
        }

        .dljb8-feature-header-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .dljb8-feature-header h1 {
            font-size: 42px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .dljb8-feature-header p {
            font-size: 18px;
            opacity: 0.95;
            margin-bottom: 20px;
        }

        .dljb8-breadcrumb {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 14px;
            opacity: 0.9;
            margin-top: 20px;
        }

        .dljb8-breadcrumb a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .dljb8-breadcrumb a:hover {
            opacity: 0.8;
        }

        /* Feature Grid */
        .dljb8-features-section {
            max-width: 1400px;
            margin: 80px auto 0;
            padding: 0 20px;
        }

        .dljb8-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .dljb8-feature-card {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 40px 30px;
            transition: all 0.3s ease;
            border: 1px solid #e5e5e5;
            display: flex;
            flex-direction: column;
        }

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

        .dljb8-feature-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: inline-block;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .dljb8-feature-desc {
            font-size: 15px;
            line-height: 1.8;
            color: #666;
            flex-grow: 1;
        }

        /* Feature Showcase Section */
        .dljb8-showcase-section {
            background: #f8f9fa;
            padding: 80px 20px;
            margin-top: 40px;
        }

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

        .dljb8-showcase-title {
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
            color: #0088cc;
        }

        .dljb8-showcase-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }

        .dljb8-showcase-row.reverse {
            direction: rtl;
        }

        .dljb8-showcase-row.reverse > * {
            direction: ltr;
        }

        .dljb8-showcase-image {
            text-align: center;
        }

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

        .dljb8-showcase-content h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #333;
        }

        .dljb8-showcase-content p {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 20px;
        }

        .dljb8-feature-list {
            list-style: none;
            margin: 20px 0;
        }

        .dljb8-feature-list li {
            padding: 10px 0 10px 30px;
            position: relative;
            color: #666;
            font-size: 15px;
        }

        .dljb8-feature-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #0088cc;
            font-weight: bold;
            font-size: 18px;
        }

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

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

        .dljb8-stats-title {
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
        }

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

        .dljb8-stat-card {
            text-align: center;
            padding: 30px;
        }

        .dljb8-stat-number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .dljb8-stat-unit {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            opacity: 0.95;
        }

        .dljb8-stat-label {
            font-size: 14px;
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Comparison Table */
        .dljb8-comparison-section {
            max-width: 1400px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .dljb8-comparison-title {
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
            color: #0088cc;
        }

        .dljb8-table-wrapper {
            overflow-x: auto;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .dljb8-comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }

        .dljb8-comparison-table th {
            background: #0088cc;
            color: white;
            padding: 20px;
            text-align: left;
            font-weight: 600;
            font-size: 15px;
        }

        .dljb8-comparison-table td {
            padding: 18px 20px;
            border-bottom: 1px solid #e5e5e5;
            font-size: 15px;
        }

        .dljb8-comparison-table tbody tr:hover {
            background: #f8f9fa;
        }

        .dljb8-comparison-table tr:last-child td {
            border-bottom: none;
        }

        .dljb8-feature-name {
            font-weight: 600;
            color: #333;
            min-width: 200px;
        }

        .dljb8-check {
            color: #28a745;
            font-weight: bold;
            font-size: 18px;
        }

        /* Use Cases Section */
        .dljb8-usecases-section {
            background: #f8f9fa;
            padding: 80px 20px;
        }

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

        .dljb8-usecases-title {
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
            color: #0088cc;
        }

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

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

        .dljb8-usecase-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

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

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

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

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

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

        .dljb8-cta-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .dljb8-cta-text {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.95;
        }

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

        .dljb8-btn {
            padding: 14px 32px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

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

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

        .dljb8-btn-secondary {
            background: rgba(255,255,255,0.2);
            color: white;
            border: 2px solid white;
        }

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

        /* Footer */
        .dljb8-footer {
            background: #1a1a1a;
            color: #ccc;
            padding: 60px 20px 20px;
            margin-top: 80px;
        }

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

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

        .dljb8-footer-section h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 16px;
            font-weight: 600;
        }

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

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

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

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

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

        .dljb8-footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #999;
            font-size: 14px;
        }

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

            .dljb8-nav-menu {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                flex-direction: column;
                background: white;
                padding: 20px;
                gap: 0;
                z-index: 998;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }

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

            .dljb8-nav-menu a {
                padding: 15px 0;
                border-bottom: 1px solid #e5e5e5;
                display: block;
            }

            .dljb8-feature-header h1 {
                font-size: 28px;
            }

            .dljb8-feature-header p {
                font-size: 16px;
            }

            .dljb8-features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .dljb8-showcase-row {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .dljb8-showcase-row.reverse {
                direction: ltr;
            }

            .dljb8-showcase-content h3 {
                font-size: 22px;
            }

            .dljb8-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

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

            .dljb8-comparison-table {
                font-size: 13px;
            }

            .dljb8-comparison-table th,
            .dljb8-comparison-table td {
                padding: 12px;
            }

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

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

            .dljb8-cta-text {
                font-size: 16px;
            }

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

            .dljb8-btn {
                width: 100%;
            }

            .dljb8-footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .dljb8-breadcrumb {
                flex-wrap: wrap;
                gap: 5px;
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .dljb8-feature-header {
                padding: 40px 15px 30px;
            }

            .dljb8-feature-header h1 {
                font-size: 22px;
            }

            .dljb8-feature-card {
                padding: 25px 20px;
            }

            .dljb8-showcase-title,
            .dljb8-comparison-title,
            .dljb8-usecases-title {
                font-size: 26px;
            }

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

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

            .dljb8-feature-list li {
                padding: 8px 0 8px 25px;
            }
        }
    