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

        body {
            line-height: 1.6;
            color: #333;
            background-color:#FFF;
        }
        .page {
            background-color:#FFF;
        }
        
        section {
            padding: 20px !important;
        }
        
        h1 {font-size:3.9rem}
        h2 {font-size:3rem}
        h3 {font-size:2rem}
        h4 {font-size:1.5rem}

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

        /* Compact Hero Section */
        .vm-hero-section {
            background: linear-gradient(135deg, #2878B6 0%, #1f3c57 100%);
            color: white;
            text-align: left;
            min-height: 500px;
	    display: flex;
	    align-items: flex-end;
	    justify-content: flex-start;
        }
        .vm-hero-section .vm-container {
        max-width: 1200px;
        margin: 0 auto;
        margin-bottom: 70px;}

        .vm-breadcrumb {
            font-size: 2rem;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .vm-breadcrumb a {
            color: #E9B01F;
            text-decoration: none;
        }

        .vm-hero-title {
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .vm-hero-description {
            font-size: 2rem;
            max-width: 800px;
            opacity: 0.95;
        }

        .vm-cta-primary {
            background: linear-gradient(135deg, #E9B01F 0%, #d4a017 100%);
            width: 300px;
            padding: 10px;
            color: #333;
            text-decoration: none;
            cursor: pointer;
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
            display: block;
            text-align: center;
        }

        .vm-cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(233, 176, 31, 0.3);
        }

        /* Main Content Layout */
        .vm-main-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            padding: 40px 0;
            max-width: 1200px;
            margin: 0 auto;
        }

        .vm-content-left {
            background: white;
        }

        .vm-content-right {
            background: #f8fafc;
            padding: 30px;
            border-radius: 12px;
            height: fit-content;
            position: sticky;
            top: 20px;
        }

        /* Features Section - Compact Grid */
        .vm-section-title {
            margin-bottom: 25px;
            color: #333;
            font-weight: 600;
        }

        .vm-features-compact {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .vm-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            background: #f9fafb;
            border-radius: 8px;
            border-left: 4px solid #2878B6;
        }

        .vm-feature-icon {
            background: linear-gradient(135deg, #2878B6 0%, #3488c6 100%);
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .vm-feature-icon svg {
            width: 20px;
            height: 20px;
            color: white;
        }

        .vm-feature-content h3 {
            font-weight: 600;
            margin-bottom: 5px;
            color: #333;
        }

        .vm-feature-content p {
            color: #666;
            line-height: 1.5;
        }

        /* Key Benefits - Inline List */
        .vm-benefits-section {
            margin-bottom: 40px;
        }

        .vm-benefits-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .vm-benefit-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 8px;
        }

        .vm-benefit-number {
            background: linear-gradient(135deg, #E9B01F 0%, #d4a017 100%);
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            font-weight: 600;
            flex-shrink: 0;
        }

        .vm-benefit-text {
            color: #555;
        }

        /* Sidebar Content */
        .vm-sidebar-section {
            margin-bottom: 30px;
        }

        .vm-sidebar-title {
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }

        .vm-related-products {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .vm-related-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            background: white;
            border-radius: 8px;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
        }

        .vm-related-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .vm-related-icon {
            width: 35px;
            height: 35px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .vm-related-item.crm .vm-related-icon {
            background: linear-gradient(135deg, #2878B6 0%, #3488c6 100%);
        }

        .vm-related-item.pos .vm-related-icon {
            background: linear-gradient(135deg, #E9B01F 0%, #d4a017 100%);
        }

        .vm-related-item.reporting .vm-related-icon {
            background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
        }

        .vm-related-icon svg {
            width: 18px;
            height: 18px;
            color: white;
        }

        .vm-related-content h4 {
            font-weight: 600;
            margin-bottom: 2px;
        }

        .vm-related-content p {
            color: #666;
        }

        /* Contact Section in Sidebar */
        .vm-contact-section {
            background: linear-gradient(135deg, #2878B6 0%, #1f3c57 100%);
            color: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
        }

        .vm-contact-section h3 {
            margin-bottom: 10px;
        }

        .vm-contact-section p {
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .vm-contact-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .vm-btn-outline {
            background: transparent;
            color: white;
            border: 1px solid white;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .vm-btn-outline:hover {
            background: white;
            color: #2878B6;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .vm-main-content {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 30px 0;
            }

            .vm-content-right {
                position: static;
            }

            .vm-hero-title {
                font-size: 2.2rem;
            }

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

            .vm-feature-item {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Product Screenshots */
        .vm-screenshots-section {
            margin-bottom: 40px;
        }

        .vm-screenshot-container {
            margin-bottom: 35px;
        }

        .vm-screenshot-header {
            margin-bottom: 20px;
        }

        .vm-screenshot-header h3 {
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .vm-screenshot-header p {
            color: #666;
            font-size: 1.2rem;
        }

        .vm-screenshot-placeholder {
            position: relative;
            background: #f8fafc;
            border: 2px dashed #d1d5db;
            border-radius: 12px;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .vm-screenshot-content {
            width: 100%;
            height: 100%;
            background: white;
            border-radius: 10px;
            padding: 0;
            position: relative;
        }

        .vm-screenshot-overlay {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(40, 120, 182, 0.9);
            color: white;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        /* Mock Dashboard Styles */
        .vm-mock-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: linear-gradient(135deg, #2878B6 0%, #1f3c57 100%);
            color: white;
        }

        .vm-mock-nav {
            display: flex;
            gap: 20px;
        }

        .vm-mock-nav span {
            font-size: 0.9rem;
            padding: 5px 10px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.2);
        }

        .vm-mock-user {
            font-size: 0.9rem;
        }

        .vm-mock-dashboard {
            padding: 20px;
        }

        .vm-mock-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }

        .vm-mock-card {
            background: #f8fafc;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #E9B01F;
        }

        .vm-mock-title {
            font-size: 0.8rem;
            color: #666;
            margin-bottom: 5px;
        }

        .vm-mock-value {
            font-size: 1.3rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 3px;
        }

        .vm-mock-trend {
            font-size: 0.8rem;
            font-weight: 600;
        }

        .vm-mock-chart {
            background: #f8fafc;
            padding: 15px;
            border-radius: 8px;
        }

        .vm-chart-title {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }

        .vm-chart-bars {
            display: flex;
            align-items: end;
            gap: 8px;
            height: 80px;
        }

        .vm-chart-bar {
            flex: 1;
            background: linear-gradient(135deg, #2878B6 0%, #3488c6 100%);
            border-radius: 4px 4px 0 0;
            min-height: 20px;
        }

        /* Mock Table Styles */
        .vm-mock-search {
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 15px;
            border-radius: 6px;
            font-size: 0.9rem;
        }

        .vm-mock-table {
            padding: 20px;
        }

        .vm-table-header {
            display: grid;
            grid-template-columns: 1fr 2fr 1.5fr 1fr;
            gap: 15px;
            padding: 10px 0;
            font-weight: 600;
            color: #333;
            border-bottom: 2px solid #e5e7eb;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .vm-table-row {
            display: grid;
            grid-template-columns: 1fr 2fr 1.5fr 1fr;
            gap: 15px;
            padding: 12px 0;
            border-bottom: 1px solid #f3f4f6;
            font-size: 0.85rem;
            align-items: center;
        }

        .vm-status {
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .vm-status.active {
            background: #dcfce7;
            color: #166534;
        }

        /* Animation */
        .vm-fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .vm-fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }  