        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #10b981;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #94a3b8;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --rounded-sm: 0.25rem;
            --rounded: 0.5rem;
            --rounded-lg: 1rem;
            --rounded-full: 9999px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background-color: #f8fafc;
            overflow-x: hidden;
        }

        /* Page Loader */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .page-loader.fade-out {
            opacity: 0;
            visibility: hidden;
        }

        .loader-logo {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--primary);
        }

        .loader-logo span {
            color: var(--dark);
        }

        .loader {
            width: 48px;
            height: 48px;
            border: 5px solid rgba(37, 99, 235, 0.2);
            border-bottom-color: var(--primary);
            border-radius: 50%;
            display: inline-block;
            box-sizing: border-box;
            animation: rotation 1s linear infinite;
        }

        @keyframes rotation {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Typography */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 3rem;
        }

        h2 {
            font-size: 2rem;
        }

        h3 {
            font-size: 1.2rem;
        }

        p {
            margin-bottom: 1rem;
            color: var(--gray);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            border-radius: var(--rounded);
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

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

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .btn-primary::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -60%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(30deg);
            transition: all 0.3s ease;
        }

        .btn-primary:hover::after {
            left: 100%;
        }

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

        .btn-secondary:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--dark);
            border-color: var(--gray);
        }

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

        .btn-large {
            padding: 1rem 2rem;
            font-size: 1.1rem;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: white;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        header.sticky {
            box-shadow: var(--shadow);
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
        }

        .logo h2 {
            font-size: 1.75rem;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .logo:hover h2 {
            transform: scale(1.05);
        }

        .logo span {
            color: var(--primary);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu li a {
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu li a:hover {
            color: var(--primary);
        }

        .nav-menu li a.active {
            color: var(--primary);
            font-weight: 600;
        }

        .nav-menu li a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary);
            animation: underline 0.3s ease forwards;
        }

        @keyframes underline {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        .nav-buttons {
            display: flex;
            gap: 1rem;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 1001;
            float: right;
        }

        .hamburger .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            background-color: var(--dark);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            padding: 10rem 0 5rem;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
        }

        .hero .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 3rem;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards 0.3s;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-content h1 span {
            color: var(--primary);
            position: relative;
        }

        .hero-content h1 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 10px;
            background-color: rgba(37, 99, 235, 0.2);
            z-index: -1;
            animation: highlight 1s ease forwards 0.5s;
            opacity: 0;
        }

        @keyframes highlight {
            from {
                opacity: 0;
                width: 0;
            }

            to {
                opacity: 1;
                width: 100%;
            }
        }

        .hero-content p {
            font-size: 1rem;
            margin-bottom: 2rem;
            color: var(--dark);
            opacity: 0.8;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .app-stores {
            display: flex;
            gap: 1rem;
        }

        .store-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background-color: var(--dark);
            color: white;
            border-radius: var(--rounded);
            font-weight: 500;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(10px);
        }

        .store-badge:nth-child(1) {
            animation: fadeInUp 0.5s ease forwards 1s;
        }

        .store-badge:nth-child(2) {
            animation: fadeInUp 0.5s ease forwards 1.2s;
        }

        .store-badge:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
            background-color: #0f172a;
        }

        .hero-image {
            flex: 1;
            position: relative;
            max-width: 500px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards 0.5s;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: var(--rounded-lg);
            box-shadow: var(--shadow-lg);
            transform: perspective(1000px) rotateY(-15deg);
            transition: transform 0.5s ease;
        }

        .hero-image:hover img {
            transform: perspective(1000px) rotateY(-5deg);
        }

        .floating-card {
            position: absolute;
            background-color: white;
            padding: 1rem;
            border-radius: var(--rounded);
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            animation: float 6s ease-in-out infinite;
            opacity: 0;
        }

        .floating-card .icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(37, 99, 235, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .floating-card span {
            font-weight: 500;
            white-space: nowrap;
        }

        .card-1 {
            top: 20%;
            left: -20px;
            animation-delay: 0s;
            animation: float 6s ease-in-out infinite, fadeIn 0.5s ease forwards 1s;
        }

        .card-2 {
            bottom: 20%;
            right: -20px;
            animation-delay: 1s;
            animation: float 6s ease-in-out infinite, fadeIn 0.5s ease forwards 1.2s;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

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

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

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* Trusted By Section */
        .trusted-by {
            padding: 3rem 0;
            background-color: white;
            overflow: hidden;
        }

        .trusted-by h3 {
            text-align: center;
            color: var(--gray);
            font-weight: 500;
            margin-bottom: 2rem;
            text-transform: uppercase;
            font-size: 0.875rem;
            letter-spacing: 1px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s ease forwards 0.5s;
        }

        .logos {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .logo-item {
            color: var(--gray);
            font-weight: 600;
            opacity: 0.7;
            transition: opacity 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
            opacity: 0;
            transform: translateY(20px);
        }

        .logo-item:nth-child(1) {
            animation: fadeInUp 0.5s ease forwards 0.6s;
        }

        .logo-item:nth-child(2) {
            animation: fadeInUp 0.5s ease forwards 0.7s;
        }

        .logo-item:nth-child(3) {
            animation: fadeInUp 0.5s ease forwards 0.8s;
        }

        .logo-item:nth-child(4) {
            animation: fadeInUp 0.5s ease forwards 0.9s;
        }

        .logo-item:nth-child(5) {
            animation: fadeInUp 0.5s ease forwards 1s;
        }

        .logo-item::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

        .logo-item:hover {
            opacity: 1;
        }

        .logo-item:hover::before {
            width: 100%;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(20px);
        }

        .section-header.animated {
            animation: fadeInUp 0.8s ease forwards;
        }

        .section-header h2 {
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary);
            border-radius: 2px;
            animation: expand 0.5s ease forwards;
        }

        .section-header p {
            margin-top: 1.5rem;
        }

        @keyframes expand {
            from {
                width: 0;
            }

            to {
                width: 80px;
            }
        }

        /* Features Section */
        .features {
            padding: 6rem 0;
            background-color: white;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background-color: white;
            border-radius: var(--rounded);
            padding: 2rem;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateY(20px);
        }

        .feature-grid.animated .feature-card {
            animation: fadeInUp 0.5s ease forwards;
        }

        .feature-grid.animated .feature-card:nth-child(1) {
            animation-delay: 0.2s;
        }

        .feature-grid.animated .feature-card:nth-child(2) {
            animation-delay: 0.4s;
        }

        .feature-grid.animated .feature-card:nth-child(3) {
            animation-delay: 0.6s;
        }

        .feature-grid.animated .feature-card:nth-child(4) {
            animation-delay: 0.8s;
        }

        .feature-grid.animated .feature-card:nth-child(5) {
            animation-delay: 1s;
        }

        .feature-grid.animated .feature-card:nth-child(6) {
            animation-delay: 1.2s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(37, 99, 235, 0.2);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: var(--rounded);
            background-color: rgba(37, 99, 235, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary);
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background-color: var(--primary);
            color: white;
            transform: rotate(15deg) scale(1.1);
        }

        .feature-card h3 {
            margin-bottom: 1rem;
        }

        /* How It Works Section */
        .how-it-works {
            padding: 6rem 0;
            background-color: #f1f5f9;
        }

        .steps {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .step {
            display: flex;
            gap: 2rem;
            align-items: flex-start;
            background-color: white;
            padding: 2rem;
            border-radius: var(--rounded-lg);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateX(-20px);
        }

        .steps.animated .step {
            animation: fadeInRight 0.5s ease forwards;
        }

        .steps.animated .step:nth-child(1) {
            animation-delay: 0.2s;
        }

        .steps.animated .step:nth-child(2) {
            animation-delay: 0.4s;
        }

        .steps.animated .step:nth-child(3) {
            animation-delay: 0.6s;
        }

        .steps.animated .step:nth-child(4) {
            animation-delay: 0.8s;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .step:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: var(--primary);
            transition: all 0.3s ease;
        }

        .step:hover::before {
            width: 8px;
        }

        .step-number {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.25rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .step:hover .step-number {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
        }

        .step-content h3 {
            margin-bottom: 0.5rem;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 6rem 0;
            background-color: white;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background-color: white;
            border-radius: var(--rounded);
            padding: 2rem;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateY(20px);
        }

        .testimonial-grid.animated .testimonial-card {
            animation: fadeInUp 0.5s ease forwards;
        }

        .testimonial-grid.animated .testimonial-card:nth-child(1) {
            animation-delay: 0.2s;
        }

        .testimonial-grid.animated .testimonial-card:nth-child(2) {
            animation-delay: 0.4s;
        }

        .testimonial-grid.animated .testimonial-card:nth-child(3) {
            animation-delay: 0.6s;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .quote {
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .quote::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: -10px;
            font-size: 4rem;
            color: rgba(37, 99, 235, 0.1);
            font-family: serif;
            line-height: 1;
            z-index: 0;
        }

        .user {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover .avatar {
            transform: rotate(15deg) scale(1.1);
        }

        .user-info h4 {
            margin-bottom: 0.25rem;
        }

        .user-info p {
            font-size: 0.875rem;
            color: var(--gray);
            margin-bottom: 0;
        }

        .rating {
            color: var(--warning);
            margin-top: 1rem;
        }

        /* FAQ Section */
        .faq {
            padding: 6rem 0;
            background-color: #f1f5f9;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: white;
            border-radius: var(--rounded);
            margin-bottom: 1rem;
            box-shadow: var(--shadow);
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
        }

        .faq-list.animated .faq-item {
            animation: fadeInUp 0.5s ease forwards;
        }

        .faq-list.animated .faq-item:nth-child(1) {
            animation-delay: 0.2s;
        }

        .faq-list.animated .faq-item:nth-child(2) {
            animation-delay: 0.4s;
        }

        .faq-list.animated .faq-item:nth-child(3) {
            animation-delay: 0.6s;
        }

        .faq-list.animated .faq-item:nth-child(4) {
            animation-delay: 0.8s;
        }

        .faq-list.animated .faq-item:nth-child(5) {
            animation-delay: 1s;
        }

        .faq-question {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background-color: #f8fafc;
        }

        .faq-question h3 {
            margin-bottom: 0;
            font-size: 1.1rem;
        }

        .faq-toggle {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: rgba(37, 99, 235, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .faq-question:hover .faq-toggle {
            background-color: var(--primary);
            color: white;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-answer p {
            padding-bottom: 1.5rem;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 1.5rem 1.5rem;
        }

        .faq-item.active .faq-toggle i {
            transform: rotate(45deg);
        }

        /* CTA Section */
        .cta {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
            opacity: 0.5;
        }

        .cta h2 {
            position: relative;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s ease forwards 0.3s;
        }

        .cta p {
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto 2rem;
            position: relative;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s ease forwards 0.5s;
        }

        .cta-buttons {
            justify-content: center;
            position: relative;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s ease forwards 0.7s;
        }

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

        .btn-primary:hover {
            background-color: #e2e8f0;
        }

        .app-stores {
            justify-content: center;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s ease forwards 0.9s;
        }

        .store-badge {
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .store-badge:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 4rem 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-col {
            opacity: 0;
            transform: translateY(20px);
        }

        footer.animated .footer-col:nth-child(1) {
            animation: fadeInUp 0.5s ease forwards 0.2s;
        }

        footer.animated .footer-col:nth-child(2) {
            animation: fadeInUp 0.5s ease forwards 0.4s;
        }

        footer.animated .footer-col:nth-child(3) {
            animation: fadeInUp 0.5s ease forwards 0.6s;
        }

        footer.animated .footer-col:nth-child(4) {
            animation: fadeInUp 0.5s ease forwards 0.8s;
        }

        footer.animated .footer-col:nth-child(5) {
            animation: fadeInUp 0.5s ease forwards 1s;
        }

        .footer-col h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.25rem;
            position: relative;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary);
            animation: expand 0.5s ease forwards;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.75rem;
        }

        .footer-col ul li a {
            color: var(--gray);
            transition: color 0.3s ease;
            position: relative;
        }

        .footer-col ul li a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: white;
            transition: width 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: white;
        }

        .footer-col ul li a:hover::after {
            width: 100%;
        }

        .brand h2 {
            color: white;
            margin-bottom: 1rem;
        }

        .brand p {
            color: var(--gray);
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.5rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: var(--gray);
            font-size: 0.875rem;
        }

        .language-selector select {
            background-color: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: var(--rounded);
            cursor: pointer;
        }

        .language-selector select:focus {
            outline: none;
        }

        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
            z-index: 999;
        }

        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background-color: var(--primary-dark);
            transform: translateY(-5px);
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .hero .container {
                flex-direction: column;
                text-align: center;
            }

            .hero-content {
                max-width: 100%;
            }

            .cta-buttons,
            .app-stores {
                justify-content: center;
            }

            .hero-image {
                margin-top: 3rem;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 3rem;
                transition: right 0.3s ease;
                box-shadow: var(--shadow-lg);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-buttons {
                display: none;
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .feature-grid,
            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .step {
                flex-direction: column;
                gap: 1rem;
            }

            .scroll-top {
                width: 40px;
                height: 40px;
                bottom: 1rem;
                right: 1rem;
            }
        }

        @media (max-width: 480px) {
            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .app-stores {
                flex-direction: column;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--dark);
            transition: all 0.3s ease;
        }

        .logo span {
            color: var(--primary);
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
        }

        .nav-brand {
            display: flex;
            align-items: center;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--dark);
            transition: all 0.3s ease;
            margin-right: 2rem;
           margin-top: 10px;
        }

        .logo span {
            color: var(--primary);
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            /* Ensure vertical alignment */
            margin: 0;
            padding: 0;
        }

        /* Update the mobile menu styles */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 3rem;
                transition: right 0.3s ease;
                box-shadow: var(--shadow-lg);
            }

            .nav-menu.active {
                right: 0;
            }

            .logo {
                margin-right: 0;
                margin-top: 10px !important;
            }
        }