
        /* 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;
            }
        }
