   :root {
            --primary: #198754;
            --primary-hover: #5aa100;
            --muted: #6b7280;
            --heading: #17171F;
        }

        body {
            font-family: Inter, system-ui, Segoe UI, Roboto, 'Helvetica Neue', Arial;
            color: #0f172a;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--heading);
        }

        .btn-primary {
            background: var(--primary);
            border-color: var(--primary);
        }

        .btn-primary:hover {
            background: var(--primary-hover);
            border-color: var(--primary-hover);
        }

        .btn-outline {
            border: 2px solid var(--primary);
            color: var(--primary);
            background: transparent;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: #fff;
        }

        .small {
            color: var(--muted);
            font-size: 0.95rem;
        }

        .card {
            border: 1px solid #eef2f7;
            box-shadow: 0 6px 18px rgba(15, 23, 42, 0.03);
            border-radius: 12px;
        }

        header {
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            border-bottom: 1px solid #eef2f7;
        }

        .text-primary {
            color: var(--primary) !important;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-size: 100%, 100%;
        }

        #easyloadBanner {
            position: fixed;
            bottom: -150px;
            /* start hidden */
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 600px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            z-index: 9999;
            font-family: 'Arial', sans-serif;
            transition: bottom 0.5s ease;
        }

        #easyloadBanner.show {
            bottom: 20px;
        }

        #easyloadBanner .app-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        #easyloadBanner img {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        #easyloadBanner .text {
            display: flex;
            flex-direction: column;
        }

        #easyloadBanner .text span:first-child {
            font-weight: 600;
            font-size: 16px;
            color: #111;
        }

        #easyloadBanner .text span:last-child {
            font-size: 14px;
            color: #555;
            margin-top: 2px;
        }

        #easyloadBanner .actions {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        #easyloadBanner .install-btn {
            background: #198754;
            color: white;
            padding: 10px 18px;
            border-radius: 10px;
            font-weight: bold;
            text-decoration: none;
            transition: background 0.3s;
            white-space: nowrap;
        }

        #easyloadBanner .install-btn:hover {
            background: #5aa100;
        }

        #easyloadBanner .close-btn {
            background: transparent;
            border: none;
            font-size: 22px;
            color: #888;
            cursor: pointer;
            padding: 2px 6px;
            line-height: 1;
        }

        @media(max-width: 480px) {
            #easyloadBanner {
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 12px;
            }

            #easyloadBanner .app-info {
                width: 100%;
            }

            #easyloadBanner .text {
                margin-left: 8px;
            }

            #easyloadBanner .actions {
                width: 100%;
                justify-content: flex-end;
                margin-top: 8px;
            }

            #easyloadBanner .install-btn {
                width: 120px;
                text-align: center;
            }
        }

        /* Hover animation for feature cards */
        .feature-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        /* Icon bounce animation */
        .animate-card .icon {
            transition: transform 0.3s ease;
        }

        .partner-logo-wrapper {
            width: 80px;
            height: 80px;
        }

        .partner-logo {
            max-width: 70%;
            max-height: 70%;
        }

        .partner-logo-wrapper:hover {
            transform: scale(1.1);
            transition: transform 0.3s;
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .accordion-button:not(.collapsed) .faq-icon {
            transform: rotate(180deg);
        }

        /* How works Card Hover Animation */
        .hover-effect:hover {
            transform: translateY(-5px);
            transition: transform 0.3s ease;
        }

        /* Animated Icons */
        .animated-icon {
            display: inline-block;
            animation: icon-bounce 2s ease-in-out infinite;
        }

        @keyframes icon-bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        /* Flow Line */
        .flow-line {
            position: relative;
            width: 100%;
            height: 10px;
            margin: 40px 0;
        }

        .flow-line::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: #28a745;
            transform: translateY(-50%);
            border-radius: 2px;
        }

        /* Dots on steps */
        .line-dot {
            width: 14px;
            height: 14px;
            background-color: #28a745;
            border-radius: 50%;
            position: relative;
            z-index: 2;
        }

        /* Animated moving dot */
        .animated-dot {
            width: 16px;
            height: 16px;
            background-color: #198754;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 0;
            transform: translate(-50%, -50%);
            animation: move-dot 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
            z-index: 3;
        }

        @keyframes move-dot {
            0% {
                left: 0%;
            }

            25% {
                left: 33%;
            }

            50% {
                left: 66%;
            }

            75% {
                left: 100%;
            }

            100% {
                left: 0%;
            }
        }
