

    p {
        font-size: 17px;
    }

    .content-left picture
    {
        display: flex;
        justify-content: start;
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .content-left img
    {
        width: 720px;
    }
    .nav-class {
        box-shadow: none !important;
    }
    
    .nav-pills .nav-link.active,
    .nav-pills .show>.nav-link {
        color: var(--bs-nav-pills-link-active-color) !important;
        background-color: #15b198 !important;
    }
    .clr-hlz {
        color: #00897b !important;
    }

    .nav-pills .nav-link.active {
    background-color: #1ab394 !important;
    color: #fff !important;
    border-radius: 6px;
}


    #getting-started,
    #understanding-dashboard,
    #orders,
    #generate-sales-orders,
    #create-first-order,
    #products-pricing,
    #pro-tips{
        scroll-margin-top: 150px !important;
    }
    .scrollable::-webkit-scrollbar {
        width: 12px;
    }

    .content-box:hover {
        box-shadow: 2px 5px 5px 5px rgba(0, 0, 0, 0.1);
        transition: all 0.5s;
    }

    .contact:hover {
        background-color: #1ab394;
        color: white !important;
        border-radius: 5px;
        padding: 5px;
        transition: 0.5s;
    }
    @media only screen and (max-width: 600px) {
        .bg-width {
            position: absolute !important;
        }
        .snackbar-links {
            display: none;
            flex-direction: column;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 250px;
            background-color: rgb(157 158 160 / 81%);
            padding: 20px;
            backdrop-filter: blur(3px);
            overflow: overlay;
        }        
    }

        .step-header {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 15px;
            border-bottom: 1px solid #e3e6e8;
            display: flex;
            align-items: center;
        }
        .step-number {
            background: linear-gradient(135deg, #1ab394, #18A689);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 20px;
            font-size: 20px;
            box-shadow: 0 4px 15px rgba(26, 179, 148, 0.3);
        }
        .step-title {
            font-size: 24px;
            font-weight: 600;
            color: #2c2c2c;
        }
        .step-content {
            padding: 30px;
            background: #fff;
        }
        .step-description {
            color: #666;
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 16px;
        }
        .workflow-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .workflow-step {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border: 1px solid #bfdbfe;
            border-radius: 10px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s ease;
        }
        .workflow-step:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(30, 64, 175, 0.2);
        }
        .workflow-icon {
            background: linear-gradient(135deg, #1ab394, #18A689);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: bold;
            flex-shrink: 0;
        }
        .workflow-text {
            font-size: 15px;
            color: #1e40af;
            font-weight: 500;
        }
        .learn-more-step {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            overflow: hidden;
            border: 1px solid #e9ecef;
        }

        
         .feature-grid {
            margin: 25px 0;
        }
        .feature-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }
        .feature-row.center-row {
            grid-template-columns: repeat(auto-fit, minmax(300px, 600px));
            justify-content: center;
        }
        .feature-card {
            background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
            border: 1px solid #e5e7eb;
            border-radius: 10px;
            padding: 20px;
            transition: all 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        .feature-title {
            font-size: 16px;
            font-weight: 600;
            color: #374151;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        .feature-title i {
            margin-right: 10px;
            font-size: 18px;
        }
        .feature-description {
            color: #6b7280;
            line-height: 1.6;
            font-size: 14px;
        }
        .clr-hlz {
            color: #1ab394 !important;
        }
        .available {
            margin-right: 10px;
            font-size: 14px;
        }
        body {
            font-family: 'Inter', 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #374151;
        }
        .container-fluid {
            max-width: 1400px;
        }
        @media (max-width: 768px) {
            .step-title {
                font-size: 20px;
            }
            .workflow-steps {
                grid-template-columns: 1fr;
            }
            .feature-row {
                grid-template-columns: 1fr;
            }
        }