
        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f3f9fa;
            color: #3a4c58;
            line-height: 1.6;
        }
        
        /* Header styles */
        .app-header {
            background-color: #2fbac7;
            border-bottom: 1px solid #2aa7b2;
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .site-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .site-brand {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: white;
            font-size: 28px;
            font-weight: bold;
        }
        
        .site-logo {
            height: 44px;
            margin-right: 15px;
        }
        
        .site-logo-text span {
            color: #dffcff;
        }
        
        .logo-country {
            background-color: #2db2bf;
            border-radius: 3px;
            bottom: 4px;
            position: absolute;
            right: 2px;
            padding: 2px;
            height: 16px;
            width: 22px;
        }
        
        .logo-container {
            position: relative;
            display: inline-block;
        }
        
        .flag-icon {
            height: 12px;
            width: 18px;
        }
        
        /* Hero section */
        .index-hero {
            text-align: center;
            position: relative;
        }
        
        .hero {
            background-color: #2fbac7;
            border-bottom: 1px solid #2db2bf;
            padding: 30px 0;
        }
        
        .hero-headlines h1 {
            color: #fff;
            font-size: 32px;
            line-height: 34px;
            margin: 40px auto 0;
            max-width: 650px;
            padding: 0;
            text-shadow: 0 1px 0 rgba(0,0,0,.2);
        }
        
        .hero-headlines p {
            color: #fff;
            font-size: 22px;
            font-weight: 500;
            line-height: 28px;
            margin: 5px auto;
            max-width: 650px;
        }
        
        .benefits {
            list-style-type: none;
            padding: 20px 0 0;
            width: 100%;
            max-width: 650px;
            margin: 0 auto;
        }
        
        .benefits li {
            color: #fff;
            display: block;
            font-size: 20px;
            font-weight: 500;
            padding: 8px;
            text-shadow: 0 1px 0 rgba(0,0,0,.2);
            text-align: left;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .benefits li i {
            color: #f7bc00;
            margin-right: 10px;
            font-size: 24px;
        }
        
        /* Explore section */
        .explore-index {
            position: relative;
            max-width: 900px;
            margin: 30px auto;
        }
        
        .explore-content {
            border-radius: 6px;
            box-shadow: 0 2px 15px rgba(0,0,0,.08);
            overflow: hidden;
            text-align: left;
        }
        
        .tabs {
            display: flex;
            background-color: white;
            overflow-x: auto;
        }
        
        .tab {
            padding: 16px 20px;
            cursor: pointer;
            white-space: nowrap;
            font-weight: 500;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
        }
        
        .tab.active {
            color: #df7256;
            border-bottom: 3px solid #df7256;
        }
        
        .tab-search {
            min-width: 50px;
            text-align: center;
        }
        
        .explore-tab-content {
            background-color: #f3f9fa;
            border-top: 1px solid #e7e7e7;
            min-height: 320px;
            padding: 20px;
        }
        
        .explore-rows {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .explore-row {
            background-color: white;
            border-radius: 6px;
            padding: 15px;
            display: flex;
            align-items: center;
            text-decoration: none;
            color: inherit;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 2px 0 #e7e7e7, 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14);
        }
        
        .explore-row:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,.1);
        }
        
        .explore-row-img {
            height: 60px;
            width: 100px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .explore-row-img img {
            height: 60px;
            max-width: 80px;
        }
        
        .explore-row-text {
            flex-grow: 1;
        }
        
        .explore-row-text h2 {
            color: #3a4c58;
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 5px;
        }
        
        .explore-row-text p {
            color: #8a949b;
            font-size: 14px;
            margin: 0;
        }
        
        .explore-row-text p span {
            color: #df7256;
            font-weight: 600;
        }
        
        .explore-footer {
            background-color: #ecf5f7;
            border-top: 1px solid #e7e7e7;
            padding: 15px;
            text-align: center;
            overflow-x: auto;
            white-space: nowrap;
        }
        
        .tag {
            display: inline-block;
            background-color: #effeff;
            border: 1px solid #c9f1f5;
            border-radius: 16px;
            color: #2fbac7;
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            margin: 5px;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .tag:hover {
            background-color: #d9f7fa;
        }
        
        .tag.secondary {
            background-color: #fef8f6;
            border: 1px solid #fde9e3;
            color: #eb917b;
        }
        
        /* Partners section */
        .partners {
            background: #6bccd5;
            border-bottom: 1px solid #32a7b2;
            min-height: 50px;
            text-align: center;
            padding: 20px 0;
        }
        
        .partners h3 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 15px;
        }
        
        .partners ul {
            list-style-type: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
        }
        
        .partners ul li {
            margin: 0 20px;
            display: flex;
            align-items: center;
        }
        
        .partners img {
            filter: brightness(0) invert(1);
            height: 40px;
        }
        
        .hero-merchants-link {
            color: #fff;
            display: block;
            font-size: 14px;
            margin-top: 15px;
            text-decoration: none;
        }
        
        .hero-merchants-link:hover {
            text-decoration: underline;
        }
        
        /* How it works section */
        .index-how {
            text-align: center;
            padding: 40px 0;
        }
        
        .index-how h2 {
            margin-bottom: 30px;
            color: #3a4c58;
            font-size: 28px;
        }
        
        .row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin: 0 -15px;
        }
        
        .col {
            padding: 15px;
            flex: 1;
            min-width: 280px;
            max-width: 350px;
        }
        
        .illustration {
            height: 200px;
            margin: 0 auto;
            min-height: 200px;
            min-width: 260px;
            width: 260px;
            background-color: #e7f5f7;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .illustration i {
            font-size: 80px;
            color: #2fbac7;
        }
        
        .index-how p {
            font-size: 18px;
            font-weight: 500;
            margin: 0 auto;
            max-width: 280px;
        }
        
        /* FAQ section */
        .question-row {
            max-width: 800px;
            margin: 40px auto;
        }
        
        .faq-item {
            margin-bottom: 10px;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 0 #e7e7e7, 0 3px 1px -2px rgba(0,0,0,.2);
        }
        
        .faq-question {
            background-color: white;
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 18px;
            font-weight: 500;
            color: #3a4c58;
        }
        
        .faq-question:hover {
            background-color: #f9f9f9;
        }
        
        .faq-answer {
            background-color: #fafafa;
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        
        .faq-answer.open {
            padding: 20px;
            max-height: 1000px;
        }
        
        .faq-answer p {
            margin-bottom: 15px;
        }
        
        .faq-answer a {
            color: #2fbac7;
            text-decoration: none;
        }
        
        .faq-answer a:hover {
            text-decoration: underline;
        }
        
        .faq-toggle {
            color: #df7256;
            transition: transform 0.3s;
        }
        
        .faq-toggle.open {
            transform: rotate(180deg);
        }
        
        /* Reviews section */
        .reviews-section {
            background-color: #2fbac7;
            border-bottom: 1px solid #1d757d;
            color: #fff;
            padding: 40px 0;
            width: 100%;
        }
        
        .reviews-section h2 {
            color: #fff;
            margin-bottom: 30px;
            text-align: center;
            text-shadow: 0 1px 0 rgba(0,0,0,.2);
        }
        
        .press-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .press-logo {
            background-color: white;
            padding: 15px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 70px;
            width: 150px;
        }
        
        .press-logo img {
            max-height: 40px;
            max-width: 120px;
        }
        
        .hero-press-link {
            color: #fff;
            display: block;
            font-size: 14px;
            text-align: center;
            text-decoration: underline;
            margin-top: 20px;
        }
        
        /* Footer */
        .app-footer {
            color: #fff;
            text-shadow: 0 1px 0 rgba(0,0,0,.2);
            width: 100%;
        }
        
        .footer-top {
            background-color: #045b63;
            border-top: 1px solid #034d54;
            padding: 40px 0;
        }
        
        .footer-columns {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 30px;
            padding-right: 20px;
        }
        
        .footer-column ul {
            list-style-type: none;
        }
        
        .footer-column li {
            margin-bottom: 15px;
            margin-left: 3px;
        }
        
        .footer-column li.head {
            font-weight: 700;
            margin-left: 0;
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .footer-column a {
            color: #fff;
            text-decoration: none;
        }
        
        .footer-column a:hover {
            text-decoration: underline;
        }
        
        .footer-bottom {
            background-color: #045259;
            border-top: 1px solid #03454a;
            padding: 30px 0;
        }
        
        .footer-bottom .container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .footer-logo {
            border-right: 1px solid #50878b;
            padding-right: 20px;
            margin-right: 20px;
        }
        
        .footer-logo img {
            height: 47px;
        }
        
        .footer-credits {
            flex-grow: 1;
            padding-left: 20px;
            font-size: 14px;
        }
        
        .footer-credits a {
            color: #ffe592;
            text-decoration: none;
        }
        
        .footer-credits a:hover {
            text-decoration: underline;
        }
        
        .footer-social {
            font-size: 24px;
            text-align: right;
            display: flex;
            gap: 15px;
        }
        
        .footer-social a {
            color: #e5e5e5;
            text-decoration: none;
        }
        
        .footer-social a:hover {
            color: #fff;
        }
        
        /* Responsive styles */
        @media (max-width: 768px) {
            .site-brand {
                font-size: 20px;
            }
            
            .hero-headlines h1 {
                font-size: 24px;
                line-height: 26px;
            }
            
            .hero-headlines p {
                font-size: 18px;
            }
            
            .benefits li {
                font-size: 16px;
            }
            
            .explore-rows {
                grid-template-columns: 1fr;
            }
            
            .row {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-columns {
                flex-direction: column;
            }
            
            .footer-bottom .container {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-logo {
                border-right: none;
                padding-right: 0;
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .footer-credits {
                padding-left: 0;
                margin-bottom: 20px;
            }
            
            .footer-social {
                justify-content: center;
                text-align: center;
            }
        }




        a{
            text-decoration: none !important;
        }

        /* ── AJAX navigation loader overlay ── */
        @keyframes clink-spin {
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .modal-loading {
            position: fixed;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            z-index: 9999;
            background: rgba(255, 255, 255, 0.55);
        }

        body .modal-loading {
            overflow: hidden;
        }

        .modal-loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 42px;
            height: 42px;
            border: 3px solid rgba(47, 186, 199, 0.2);
            border-top-color: #2fbac7;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: clink-spin 0.65s linear infinite;
        }



        .soft-flying-button {
            position: fixed !important;        /* force floating */
            top: 50% !important;               /* middle of screen */
            right: 0 !important;                /* flush left */
            transform: translateY(-50%) !important; /* vertical center */
            z-index: 9999 !important;          /* on top */

            width: 80px !important;           /* fixed width */
            height: 200px !important;          /* fixed height */
            overflow-y: auto !important;       /* enable scrolling */
            padding: 10px !important;
            background: rgba(255, 255, 255, 0.95) !important; /* background */
            border-radius: 10px 0 0 10px !important; /* rounded right */
            box-shadow: 2px 2px 10px rgba(0,0,0,0.2) !important; /* shadow */
        }

        /* Hide scrollbar for Chrome, Safari */
        .soft-flying-button::-webkit-scrollbar {
            display: none !important;
        }

        /* Hide scrollbar for Firefox */
        .soft-flying-button {
            scrollbar-width: none !important;
        }

        .soft-flying-button ul {
            margin: 0 !important;
            padding: 0 !important;
            list-style: none !important;
        }

        .soft-flying-button li {
            padding: 8px 5px !important;
            border-bottom: 1px solid #ddd !important;
        }



        /*error page css*/


        .error-title{
            color:#E65C00 !important;
        }
        .error-code{
            color:red !important;
        }

        .btn-primary {
            background-color: #E65C00 !important;
            color: white !important;
        }



        .card-content-wrapper {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-content-card {
            background: #ffffff;
            border-radius: 10px;
            padding: 50px 40px;
            max-width: 520px;
            width: 100%;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,.1);
        }

        .card-content-logo img {
            max-height: 120px;
            margin-bottom: 20px;
        }

        .card-content-code {
            font-size: 10px;
            /*font-weight: 700;*/
            color: #2fbac7;
            margin-bottom: 10px;
        }

        .card-content-title {
            font-size: 15px;
            font-weight: 600;
            color: #3a4c58;
            margin-bottom: 10px;
        }

        .card-content-message {
            color: #6b7b86;
            font-size: 16px;
            margin-bottom: 30px;
        }

        .card-content-actions a {
            display: inline-block;
            padding: 12px 22px;
            border-radius: 6px;
            text-decoration: none;
            /*font-weight: 500;*/
            margin: 5px;
        }

        .card-content-btn-primary {
            background-color: #2fbac7;
            color: #fff;
        }

        .card-content-btn-primary:hover {
            background-color: #2aa7b2;
        }

        .card-content-btn-secondary {
            background-color: #f1f5f6;
            color: #3a4c58;
        }

        .card-content-btn-secondary:hover {
            background-color: #e4ecee;
        }