
        :root {
            --dm-primary-color: #0d6efd;
            --dm-secondary-color: #0b5ed7;
            --dm-accent-color: #ff6b35;
            --dm-dark-color: #1a1a2e;
            --dm-light-color: #f8f9fa;
            --dm-text-color: #333;
            --dm-text-light: #6c757d;
        }

        .dm-body {
            font-family: 'Poppins', sans-serif;
            color: var(--dm-text-color);
            line-height: 1.7;
            overflow-x: hidden;
        }

        #dm-page {
            background-color: white;
        }

        /* Animation Delay Classes */
        .dm-animate-delay-100 {
            animation-delay: 0.1s;
        }

        .dm-animate-delay-200 {
            animation-delay: 0.2s;
        }

        .dm-animate-delay-300 {
            animation-delay: 0.3s;
        }

        .dm-animate-delay-400 {
            animation-delay: 0.4s;
        }

        .dm-animate-delay-500 {
            animation-delay: 0.5s;
        }

        .dm-animate-delay-600 {
            animation-delay: 0.6s;
        }

        .dm-animate-delay-700 {
            animation-delay: 0.7s;
        }

        .dm-animate-delay-800 {
            animation-delay: 0.8s;
        }

        .dm-animate-delay-900 {
            animation-delay: 0.9s;
        }

        .dm-animate-delay-1000 {
            animation-delay: 1s;
        }

        /* Hero Section */
        #dm-hero-section {
            background: linear-gradient(135deg, rgba(13, 110, 253, 0.9), rgba(10, 83, 190, 0.9)),
                url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        #dm-hero-section:before {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: white;
            transform: skewY(-3deg);
            z-index: 1;
        }

        #dm-hero-section h1 {
            font-weight: 700;
            font-size: 3rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        #dm-hero-section .lead {
            font-size: 1.3rem;
            opacity: 0.9;
        }

        /* Section Titles */
        .dm-section-title {
            color: var(--dm-primary-color);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            font-weight: 700;
            font-size: 2rem;
        }

        .dm-section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background: var(--dm-accent-color);
            border-radius: 2px;
        }

        .dm-section-title.center:after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Cards */
        .dm-card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            overflow: hidden;
            position: relative;
            background: white;
        }

        .dm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .dm-card-header {
            background: var(--dm-primary-color) !important;
            color: white !important;
            padding: 20px !important;
            font-weight: 600;
            border-radius: 12px 12px 0 0 !important;
        }

        .dm-card-icon {
            font-size: 2.5rem;
            color: var(--dm-primary-color);
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .dm-card:hover .dm-card-icon {
            transform: scale(1.1);
            color: var(--dm-accent-color);
        }

        /* Benefits Section */
        .dm-benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .dm-benefit-icon {
            font-size: 1.5rem;
            color: var(--dm-primary-color);
            background: rgba(13, 110, 253, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-right: 15px;
        }

        /* Comparison Table */
        .dm-comparison-table {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .dm-comparison-table th {
            background: var(--dm-primary-color);
            color: white;
            font-weight: 600;
            padding: 15px;
            text-align: center;
        }

        .dm-comparison-table td {
            padding: 15px;
            vertical-align: middle;
        }

        .dm-comparison-table tr:nth-child(even) {
            background-color: rgba(13, 110, 253, 0.03);
        }

        /* Timeline */
        .dm-timeline {
            position: relative;
            padding-left: 50px;
        }

        .dm-timeline:before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--dm-primary-color);
        }

        .dm-timeline-item {
            position: relative;
            margin-bottom: 30px;
        }

        .dm-timeline-item:last-child {
            margin-bottom: 0;
        }

        .dm-timeline-dot {
            position: absolute;
            left: -50px;
            top: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--dm-primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 3px 10px rgba(13, 110, 253, 0.3);
        }

        .dm-timeline-content {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        /* CTA Section */
        #dm-cta-section {
            background: linear-gradient(135deg, var(--dm-primary-color), var(--dm-secondary-color));
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        #dm-cta-section:before {
            content: '';
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: white;
            transform: skewY(3deg);
            z-index: 1;
        }

        #dm-cta-section:after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: white;
            transform: skewY(3deg);
            z-index: 1;
        }

        .dm-cta-btn {
            background: white !important;
            color: var(--dm-primary-color) !important;
            font-weight: 600 !important;
            padding: 12px 30px !important;
            border-radius: 50px !important;
            margin: 10px;
            transition: all 0.3s ease !important;
            border: 2px solid white !important;
        }

        .dm-cta-btn:hover {
            background: transparent;
            color: white;
            transform: translateY(-3px);
        }

        .dm-cta-btn.outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .dm-cta-btn.outline:hover {
            background: white;
            color: var(--dm-primary-color);
        }

        /* FAQ Section */
        .dm-faq-card {
            margin-bottom: 15px;
            border-radius: 10px;
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        .dm-faq-header {
            background: white;
            cursor: pointer;
            padding: 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .dm-faq-header:hover {
            background: rgba(13, 110, 253, 0.05);
        }

        .dm-faq-header.collapsed {
            background: white;
        }

        .dm-faq-body {
            padding: 20px;
            background: rgba(13, 110, 253, 0.03);
        }

        /* Badges */
        .dm-badge {
            display: inline-flex;
            align-items: center;
            padding: 8px 15px;
            border-radius: 50px;
            background: rgba(13, 110, 253, 0.1);
            color: var(--dm-primary-color);
            font-weight: 500;
            margin-right: 10px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

        .dm-badge:hover {
            background: var(--dm-primary-color);
            color: white;
            transform: translateY(-3px);
        }

        .dm-badge i {
            margin-right: 8px;
            font-size: 0.9rem;
        }

        /* New Sections Styles */
        /* Jurisdiction Comparison Table */
        .dm-jurisdiction-table {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .dm-jurisdiction-table th {
            background: var(--dm-primary-color);
            color: white;
            font-weight: 600;
            padding: 15px;
            text-align: center;
        }

        .dm-jurisdiction-table td {
            padding: 15px;
            vertical-align: middle;
            border-right: 1px solid #eee;
        }

        .dm-jurisdiction-table tr:nth-child(even) {
            background-color: rgba(13, 110, 253, 0.03);
        }

        .dm-jurisdiction-table .highlight-cell {
            background-color: rgba(255, 107, 53, 0.1);
            font-weight: 600;
        }

        /* Compliance Guide */
        .dm-compliance-item {
            border-left: 3px solid var(--dm-primary-color);
            padding-left: 20px;
            margin-bottom: 25px;
        }

        .dm-compliance-item h5 {
            color: var(--dm-primary-color);
        }

        /* Industry Solutions */
        .dm-industry-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
        }

        .dm-industry-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .dm-industry-card-header {
            background: var(--dm-primary-color);
            color: white;
            padding: 15px;
            font-weight: 600;
        }

        /* Awards Section */
        .dm-award-logo {
            max-height: 80px;
            max-width: 150px;
            margin: 15px;
            filter: grayscale(100%);
            transition: all 0.3s ease;
            object-fit: contain;
        }

        .dm-award-logo:hover {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        /* Banking Section */
        .dm-banking-step {
            display: flex;
            margin-bottom: 20px;
        }

        .dm-banking-step-number {
            background: var(--dm-primary-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        /* Economic Snapshot */
        .dm-stat-card {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            height: 100%;
        }

        .dm-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dm-primary-color);
            margin-bottom: 10px;
        }

        /* Mistakes Section */
        .dm-mistake-item {
            display: flex;
            margin-bottom: 20px;
        }

        .dm-mistake-icon {
            color: #dc3545;
            font-size: 1.5rem;
            margin-right: 15px;
        }

        /* Interactive Tools */
        .dm-calculator {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .dm-timeline-tracker {
            position: relative;
            padding-left: 40px;
        }

        .dm-timeline-tracker:before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--dm-primary-color);
        }

        .dm-tracker-item {
            position: relative;
            margin-bottom: 30px;
        }

        .dm-tracker-dot {
            position: absolute;
            left: -40px;
            top: 0;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--dm-primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .dm-tracker-content {
            background: rgba(13, 110, 253, 0.05);
            padding: 15px;
            border-radius: 8px;
        }

        /* FAQ Two Columns */
        .dm-faq-column {
            padding: 0 15px;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            #dm-hero-section h1 {
                font-size: 2.5rem;
            }

            #dm-hero-section .lead {
                font-size: 1.1rem;
            }

            .dm-section-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            #dm-hero-section {
                padding: 100px 0;
            }

            #dm-hero-section h1 {
                font-size: 2rem;
            }

            .dm-section-title {
                font-size: 1.6rem;
            }

            .dm-timeline {
                padding-left: 36px;
            }

            .dm-timeline-dot {
                left: -30px;
                width: 30px;
                height: 30px;
                font-size: 1rem;
            }

            .dm-faq-column {
                padding: 0;
            }
        }

        @media (max-width: 576px) {
            #dm-hero-section {
                padding: 80px 0;
            }

            #dm-hero-section h1 {
                font-size: 1.8rem;
            }

            .dm-section-title {
                font-size: 1.4rem;
            }

            .dm-cta-btn {
                display: block;
                width: 100%;
                margin: 10px 0;
            }
        }
