 
            :root {
                --bg-color: #f8fafc;
                --text-color: #1e293b;
                --light-border: #e2e8f0;
                --primary-color: #0f172a;
                --secondary-color: #475569;
                --white: #ffffff;
                --accent-color: #0391ab;
                --accent-hover: #047857;
                --success-color: #10b981;
                --error-color: #ef4444;
                --form-bg: #ffffff;
                --form-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
                --partner-color: #0079ff;
                --partner-hover: #085ba1;
                --gradient-primary: linear-gradient(135deg, #0298b3 0%, #036777 100%);
                --gradient-secondary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
                --gradient-partner: linear-gradient(135deg, #0079ff 0%, #085ba1 100%);
                --input-focus-shadow: 0 0 0 3px rgba(3, 145, 171, 0.15);
            }
            
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
            
            body {
                font-family: 'Inter', sans-serif;
                line-height: 1.6;
                color: var(--text-color);
                background-color: var(--bg-color);
                -webkit-font-smoothing: antialiased;
                scroll-behavior: smooth;
                overflow-x: hidden;
            }
            
            a {
                color: var(--primary-color);
                text-decoration: none;
                transition: all 0.3s ease;
            }
            
            a:hover {
                color: var(--accent-color);
            }
            
            .container {
                width: 100%;
                max-width: 1280px;
                margin: 0 auto;
                padding: 0 20px;
            }
            
            /* Enhanced Form Input Styles */
            .form-group {
                margin-bottom: 1.5rem;
                position: relative;
            }
            
            .form-label {
                display: block;
                margin-bottom: 0.5rem;
                font-weight: 600;
                color: var(--secondary-color);
                font-size: 0.9rem;
                transition: color 0.3s ease;
                text-align: left;
            }
            
            .form-input-wrapper {
                position: relative;
                width: 100%;
            }
            
            .form-input {
                width: 100%;
                padding: 1rem 1.25rem;
                border: 2px solid var(--light-border);
                border-radius: 12px;
                font-size: 1rem;
                transition: all 0.3s ease;
                background-color: var(--white);
                font-family: 'Inter', sans-serif;
                color: var(--text-color);
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            }
            
            .form-input:focus {
                outline: none;
                border-color: var(--accent-color);
                box-shadow: var(--input-focus-shadow);
                transform: translateY(-1px);
            }
            
            .form-input:hover {
                border-color: #cbd5e1;
            }
            
            .form-input::placeholder {
                color: #94a3b8;
            }
            
            /* Floating Label Effect */
            .floating-label {
                position: absolute;
                top: 1rem;
                left: 1.25rem;
                color: #94a3b8;
                font-size: 1rem;
                pointer-events: none;
                transition: all 0.3s ease;
                background: var(--white);
                padding: 0 0.25rem;
            }
            
            .form-input:focus + .floating-label,
            .form-input:not(:placeholder-shown) + .floating-label {
                top: -0.5rem;
                left: 0.75rem;
                font-size: 0.8rem;
                color: var(--accent-color);
                font-weight: 600;
            }
            
            /* Form Input Icons */
            .form-icon {
                position: absolute;
                right: 1rem;
                top: 50%;
                transform: translateY(-50%);
                color: #94a3b8;
                transition: color 0.3s ease;
            }
            
            .form-input:focus ~ .form-icon {
                color: var(--accent-color);
            }
            
            /* Select Input Styles */
            select.form-input {
                appearance: none;
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
                background-repeat: no-repeat;
                background-position: right 1rem center;
                background-size: 16px;
                padding-right: 2.5rem;
                cursor: pointer;
            }
            
            /* Textarea Styles */
            textarea.form-input {
                min-height: 120px;
                resize: vertical;
                line-height: 1.5;
                padding-top: 1rem;
            }
            
            /* Checkbox Styles */
            .checkbox-wrapper {
                display: flex;
                align-items: flex-start;
                gap: 0.75rem;
                cursor: pointer;
            }
            
            .checkbox-input {
                appearance: none;
                width: 20px;
                height: 20px;
                border: 2px solid var(--light-border);
                border-radius: 4px;
                background: var(--white);
                cursor: pointer;
                position: relative;
                flex-shrink: 0;
                transition: all 0.3s ease;
            }
            
            .checkbox-input:checked {
                background-color: var(--accent-color);
                border-color: var(--accent-color);
            }
            
            .checkbox-input:checked::after {
                content: '✓';
                position: absolute;
                color: white;
                font-size: 12px;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }
            
            .checkbox-input:hover {
                border-color: var(--accent-color);
            }
            
            .checkbox-label {
                font-size: 0.9rem;
                line-height: 1.5;
                color: var(--secondary-color);
                user-select: none;
            }
            
            .checkbox-label a {
                color: var(--accent-color);
                font-weight: 500;
            }
            
            .checkbox-label a:hover {
                text-decoration: underline;
            }
            
            /* Enhanced Submit Button */
            .submit-btn {
                background: var(--gradient-primary);
                color: white;
                border: none;
                padding: 1rem 2rem;
                border-radius: 12px;
                font-size: 1rem;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 0.75rem;
                box-shadow: 0 4px 15px rgba(3, 145, 171, 0.3);
                position: relative;
                overflow: hidden;
            }
            
            .submit-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 25px rgba(3, 145, 171, 0.4);
            }
            
            .submit-btn:active {
                transform: translateY(0);
            }
            
            .submit-btn:disabled {
                opacity: 0.7;
                cursor: not-allowed;
                transform: none;
            }
            
            /* Ripple Effect */
            .ripple {
                position: absolute;
                border-radius: 50%;
                background-color: rgba(255, 255, 255, 0.7);
                transform: scale(0);
                animation: ripple 0.6s linear;
            }
            
            @keyframes ripple {
                to {
                    transform: scale(4);
                    opacity: 0;
                }
            }
            
            /* Success Animation */
            .success-checkmark {
                display: none;
                font-size: 1.5rem;
                animation: checkmark 0.5s ease;
            }
            
            @keyframes checkmark {
                0% {
                    transform: scale(0);
                }
                50% {
                    transform: scale(1.2);
                }
                100% {
                    transform: scale(1);
                }
            }
            
            /* Header Styles */
            header {
                background-color: var(--white);
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
                position: sticky;
                top: 0;
                z-index: 1000;
                backdrop-filter: blur(10px);
            }
            
            .header-container {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 18px 20px;
                position: relative;
            }
            
            .logo img {
                height: 42px;
                width: auto;
                transition: transform 0.3s ease;
            }
            
            .logo:hover img {
                transform: scale(1.05);
            }
            
            nav ul {
                display: flex;
                list-style: none;
                gap: 28px;
                align-items: center;
            }
            
            nav ul li a {
                font-weight: 500;
                color: var(--text-color);
                position: relative;
                padding: 8px 0;
                font-size: 15px;
            }
            
            nav ul li a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 2px;
                background: var(--gradient-primary);
                transition: width 0.3s ease;
            }
            
            nav ul li a:hover::after {
                width: 100%;
            }
            
            .nav-cta {
                background: var(--gradient-primary);
                color: var(--white);
                padding: 10px 22px;
                border-radius: 8px;
                font-weight: 600;
                box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
                transition: all 0.3s ease;
            }
            
            .nav-cta:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
                color: var(--white);
            }
            
            .nav-partner {
                font-size: 12px;
                background: var(--gradient-partner);
                color: var(--white);
                padding: 10px 22px;
                border-radius: 8px;
                font-weight: 600;
                box-shadow: 0 4px 12px rgb(2 113 230 / 18%);
                transition: all 0.3s ease;
                margin-left: 10px;
            }
            
            .nav-partner:hover {
                transform: translateY(-2px);
                color: var(--white);
                background: linear-gradient(135deg, #0079ff 0%, #085ba1 100%);
            }
            
            /* Hero Section */
            .hero {
                background: var(--gradient-primary);
                color: var(--white);
                padding: 100px 0;
                text-align: center;
                position: relative;
                overflow: hidden;
            }
            
            .hero::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
                z-index: 1;
            }
            
            .hero-content {
                position: relative;
                z-index: 2;
                max-width: 800px;
                margin: 0 auto;
                padding: 0 15px;
            }
            
            .hero h1 {
                font-size: 3.5rem;
                margin-bottom: 24px;
                font-weight: 700;
                line-height: 1.1;
            }
            
            .hero p {
                font-size: 1.25rem;
                margin-bottom: 40px;
                opacity: 0.95;
                line-height: 1.6;
            }
            
            .download-btn {
                display: inline-flex;
                align-items: center;
                gap: 12px;
                background-color: var(--white);
                color: var(--accent-color);
                padding: 16px 32px;
                border-radius: 12px;
                font-weight: 600;
                transition: all 0.3s ease;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
                font-size: 1.1rem;
            }
            
            .download-btn:hover {
                transform: translateY(-3px);
                box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
                color: var(--accent-hover);
            }
            
            .download-btn i {
                font-size: 1.5rem;
            }
            
            /* Mobile Hero Form */
            .mobile-hero-form {
                display: none;
                background: var(--white);
                margin: 30px auto 0;
                padding: 25px;
                border-radius: 16px;
                box-shadow: var(--form-shadow);
                max-width: 400px;
                width: 100%;
            }
            
            .mobile-hero-form .form-title {
                font-size: 1.3rem;
                margin-bottom: 20px;
                color: var(--primary-color);
                font-weight: 700;
                text-align: center;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
            }
            
            .mobile-hero-form .form-title i {
                color: var(--accent-color);
            }
            
            /* Contact Card */
            .contact-card {
                background: var(--white);
                padding: 40px;
                border-radius: 16px;
                margin: -60px auto 50px;
                max-width: 900px;
                box-shadow: var(--form-shadow);
                position: relative;
                z-index: 10;
                border: 1px solid var(--light-border);
                text-align: center;
            }
            
            .contact-card h2 {
                font-size: 2rem;
                margin-bottom: 16px;
                font-weight: 700;
                color: var(--primary-color);
            }
            
            .contact-card p {
                font-size: 1.1rem;
                margin-bottom: 0;
                color: var(--secondary-color);
                line-height: 1.7;
            }
            
            /* Form Container */
            .form-container {
                background-color: var(--form-bg);
                border-radius: 16px;
                box-shadow: var(--form-shadow);
                padding: 32px;
                margin-bottom: 30px;
                border: 1px solid var(--light-border);
                transition: transform 0.3s ease;
            }
            
            .form-container:hover {
                transform: translateY(-2px);
            }
            
            .form-title {
                font-size: 1.5rem;
                margin-bottom: 28px;
                color: var(--primary-color);
                font-weight: 700;
                display: flex;
                align-items: center;
                gap: 12px;
            }
            
            .form-title i {
                color: var(--accent-color);
                background: var(--gradient-primary);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
            
            .btn-loader {
                display: none;
            }
            
            /* Terms and Conditions */
            .terms-container {
                margin: 20px 0;
                padding: 20px;
                background: #f8fafc;
                border-radius: 10px;
                border: 1px solid var(--light-border);
            }
            
            /* Toast Notification */
            .toast {
                visibility: hidden;
                min-width: 300px;
                background-color: #037588e0;
                color: white;
                text-align: center;
                border-radius: 12px;
                padding: 18px;
                position: fixed;
                z-index: 1000;
                left: 50%;
                bottom: 40px;
                transform: translateX(-50%);
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
                opacity: 0;
                transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
                font-weight: 500;
                backdrop-filter: blur(10px);
            }
            
            .toast.show {
                visibility: visible;
                opacity: 1;
                transform: translateX(-50%) translateY(-10px);
            }
            
            .toast.success {
                background-color: rgba(16, 185, 129, 0.9);
            }
            
            .toast.error {
                background-color: rgba(239, 68, 68, 0.9);
            }
            
            /* Mobile Navigation */
            .nav-toggle {
                display: none;
                background: none;
                border: none;
                font-size: 24px;
                color: var(--text-color);
                cursor: pointer;
                z-index: 1002;
                width: 40px;
                height: 40px;
                border-radius: 8px;
                transition: all 0.3s ease;
            }
            
            .nav-toggle:hover {
                background: var(--bg-color);
            }
            
            .mobile-nav {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: var(--white);
                z-index: 1000;
                display: none;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                padding: 20px;
            }
            
            .mobile-nav.active {
                display: flex;
                transform: translateX(0);
            }
            
            .mobile-nav ul {
                list-style: none;
                text-align: center;
                width: 100%;
            }
            
            .mobile-nav ul li {
                margin: 20px 0;
            }
            
            .mobile-nav ul li a {
                font-size: 24px;
                color: var(--text-color);
                font-weight: 600;
                padding: 15px 25px;
                border-radius: 10px;
                transition: all 0.3s ease;
                display: block;
                width: 100%;
            }
            
            .mobile-nav ul li a:hover {
                background: var(--bg-color);
                color: var(--accent-color);
            }
            
            .close-nav {
                position: absolute;
                top: 25px;
                right: 25px;
                font-size: 32px;
                background: none;
                border: none;
                color: var(--text-color);
                cursor: pointer;
                z-index: 1001;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
            }
            
            .close-nav:hover {
                background: var(--bg-color);
            }
            
            /* Mobile Header Buttons */
            .mobile-header-buttons {
                display: none;
                position: absolute;
                top: 50%;
                right: 70px;
                transform: translateY(-50%);
                gap: 10px;
                z-index: 1001;
            }
            
            .mobile-partner-btn {
                background: var(--gradient-partner);
                color: var(--white);
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
                transition: all 0.3s ease;
                border: none;
                font-size: 16px;
                text-decoration: none;
            }
            
            .mobile-partner-btn:hover {
                transform: scale(1.1);
                box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
            }
            
            .mobile-download-btn {
                display: none;
                position: absolute;
                top: 50%;
                right: 20px;
                transform: translateY(-50%);
                background: var(--gradient-primary);
                color: var(--white);
                width: 40px;
                height: 40px;
                border-radius: 50%;
                align-items: center;
                justify-content: center;
                z-index: 1001;
                box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
                transition: all 0.3s ease;
                border: none;
                font-size: 16px;
                text-decoration: none;
            }
            
            .mobile-download-btn:hover {
                transform: translateY(-50%) scale(1.1);
                box-shadow: 0 6px 20px rgba(5, 150, 105, 0.6);
            }
            
            /* Main Content */
            .main-content {
                display: grid;
                grid-template-columns: 1fr 380px;
                gap: 50px;
                padding: 50px 0;
            }
            
            .page-content {
                background-color: var(--white);
                padding: 40px;
                border-radius: 16px;
                border: 1px solid var(--light-border);
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            }
            
            .page-title {
                font-size: 2.5rem;
                margin-bottom: 2rem;
                color: var(--primary-color);
                font-weight: 700;
                line-height: 1.2;
            }
            
            .page-post {
                line-height: 1.8;
                color: var(--secondary-color);
            }
            
            .page-post h2, .page-post h3, .page-post h4 {
                color: var(--primary-color);
                margin: 2rem 0 1rem;
            }
            
            .page-post p {
                margin-bottom: 1.5rem;
            }
            
            /* Sidebar */
            .sidebar {
                position: sticky;
                top: 120px;
                align-self: flex-start;
            }
            
            .sidebar-box {
                background-color: var(--white);
                padding: 28px;
                margin-bottom: 28px;
                border-radius: 16px;
                border: 1px solid var(--light-border);
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
                transition: transform 0.3s ease;
            }
            
            .sidebar-box:hover {
                transform: translateY(-2px);
            }
            
            .sidebar-title {
                font-size: 1.3rem;
                margin-bottom: 1.5rem;
                padding-bottom: 12px;
                border-bottom: 2px solid var(--light-border);
                color: var(--primary-color);
                font-weight: 700;
            }
            
            .sidebar-list {
                list-style: none;
            }
            
            .sidebar-list li {
                margin-bottom: 14px;
                padding-bottom: 14px;
                border-bottom: 1px solid var(--light-border);
                transition: all 0.3s ease;
            }
            
            .sidebar-list li:hover {
                border-bottom-color: var(--accent-color);
            }
            
            .sidebar-list li:last-child {
                margin-bottom: 0;
                padding-bottom: 0;
                border-bottom: none;
            }
            
            .sidebar-list a {
                display: flex;
                align-items: center;
                gap: 12px;
                color: var(--text-color);
                font-weight: 500;
                transition: all 0.3s ease;
            }
            
            .sidebar-list a:hover {
                color: var(--accent-color);
                transform: translateX(5px);
            }
            
            .sidebar-list i {
                color: var(--accent-color);
                transition: transform 0.3s ease;
            }
            
            .sidebar-list a:hover i {
                transform: translateX(3px);
            }
            
            .download-app {
                display: flex;
                align-items: center;
                gap: 18px;
                background: var(--gradient-primary);
                color: var(--white);
                padding: 20px;
                border-radius: 12px;
                transition: all 0.3s ease;
                box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
            }
            
            .download-app:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
                color: var(--white);
            }
            
            .download-icon {
                font-size: 2.5rem;
            }
            
            .download-text {
                line-height: 1.4;
            }
            
            .download-text span {
                font-size: 0.9rem;
                opacity: 0.9;
            }
            
            /* Footer */
            footer {
                background: var(--gradient-secondary);
                color: white;
                padding: 60px 0 20px;
                margin-top: 50px;
            }
            
            .footer-content {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 50px;
                margin-bottom: 50px;
            }
            
            .footer-column h3 {
                font-size: 1.2rem;
                margin-bottom: 1.5rem;
                color: white;
                font-weight: 700;
            }
            
            .footer-column p {
                color: #cbd5e1;
                line-height: 1.7;
                margin-bottom: 20px;
            }
            
            .footer-links {
                list-style: none;
            }
            
            .footer-links li {
                margin-bottom: 12px;
            }
            
            .footer-links a {
                color: #cbd5e1;
                transition: all 0.3s ease;
            }
            
            .footer-links a:hover {
                color: white;
                padding-left: 5px;
            }
            
            .social-links {
                display: flex;
                gap: 15px;
                margin-top: 20px;
            }
            
            .social-links a {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 42px;
                height: 42px;
                background: rgba(255, 255, 255, 0.1);
                color: white;
                border-radius: 50%;
                transition: all 0.3s ease;
                backdrop-filter: blur(10px);
            }
            
            .social-links a:hover {
                background: var(--accent-color);
                transform: translateY(-3px);
            }
            
            .footer-bottom {
                text-align: center;
                padding-top: 30px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                font-size: 0.9rem;
                color: #94a3b8;
            }
            
            /* How It Works Section */
            .how-it-works {
                margin-top: 40px;
                padding-top: 30px;
                border-top: 2px solid var(--light-border);
            }

            .how-it-works h3 {
                text-align: center;
                font-size: 1.5rem;
                margin-bottom: 40px;
                color: var(--primary-color);
                font-weight: 700;
            }

            .process-steps {
                display: flex;
                justify-content: space-between;
                align-items: center;
                position: relative;
                padding: 0 20px;
            }

            .process-step {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                flex: 1;
                position: relative;
                z-index: 2;
            }

            .step-icon {
                position: relative;
                margin-bottom: 15px;
            }

            .icon-circle {
                width: 50px;
                height: 50px;
                background: var(--white);
                border: 2px solid var(--accent-color);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto;
                position: relative;
                transition: all 0.3s ease;
                box-shadow: 0 3px 10px rgba(5, 150, 105, 0.2);
            }

            .icon-circle i {
                font-size: 1.2rem;
                color: var(--accent-color);
                transition: all 0.3s ease;
            }

            .step-number {
                position: absolute;
                top: -5px;
                right: -5px;
                width: 20px;
                height: 20px;
                background: var(--gradient-primary);
                color: var(--white);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: 700;
                font-size: 0.7rem;
                box-shadow: 0 2px 5px rgba(5, 150, 105, 0.3);
            }

            .step-content h4 {
                font-size: 0.9rem;
                margin-bottom: 0;
                color: var(--primary-color);
                font-weight: 600;
                line-height: 1.2;
            }

            /* Step Connector with Animated Arrow */
            .step-connector {
                flex: 1;
                position: relative;
                height: 2px;
                margin: 0 10px;
                max-width: 80px;
            }

            .animated-line {
                position: absolute;
                top: 50%;
                left: 0;
                right: 0;
                height: 2px;
                background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
                transform: translateY(-50%);
                overflow: hidden;
            }

            .animated-line::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, var(--white), transparent);
                animation: flow 2s ease-in-out infinite;
            }

            .arrow-head {
                position: absolute;
                top: 50%;
                right: 0;
                width: 8px;
                height: 8px;
                border-right: 2px solid var(--accent-color);
                border-top: 2px solid var(--accent-color);
                transform: translateY(-50%) rotate(45deg);
            }

            /* City Selection Styles */
            .other-city-field {
                margin-top: 15px;
                display: none;
                animation: slideDown 0.3s ease;
            }

            .other-city-field.show {
                display: block;
            }

            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-10px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            /* Responsive Design */
            @media (max-width: 1200px) {
                .container {
                    max-width: 1000px;
                }
                
                .process-steps {
                    padding: 0 10px;
                }
                
                .step-connector {
                    max-width: 60px;
                }
            }
            
            @media (max-width: 992px) {
                .main-content {
                    grid-template-columns: 1fr;
                    gap: 40px;
                    padding: 40px 0;
                }
                
                .sidebar {
                    position: static;
                    margin-top: 0;
                }
                
                .hero h1 {
                    font-size: 3rem;
                }
                
                .contact-card {
                    margin: -40px auto 40px;
                    padding: 30px;
                }
                
                .process-steps {
                    padding: 0 5px;
                }
                
                .step-connector {
                    max-width: 40px;
                    margin: 0 5px;
                }
                
                .icon-circle {
                    width: 45px;
                    height: 45px;
                }
                
                .icon-circle i {
                    font-size: 1.1rem;
                }
                
                .step-content h4 {
                    font-size: 0.85rem;
                }
            }
            
            @media (max-width: 768px) {
                .nav-toggle {
                    display: block;
                }
                
                nav {
                    display: none;
                }
                
                .mobile-header-buttons {
                    display: flex;
                }
                
                .mobile-partner-btn {
                    display: flex;
                }
                
                .mobile-download-btn {
                    display: flex;
                }
                
                .page-title {
                    font-size: 2rem;
                }
                
                .page-content {
                    padding: 30px 25px;
                }
                
                .hero {
                    padding: 60px 0;
                }
                
                .hero h1 {
                    font-size: 2.2rem;
                    margin-bottom: 20px;
                }
                
                .hero p {
                    font-size: 1.1rem;
                    margin-bottom: 30px;
                    padding: 0 10px;
                }
                
                .mobile-hero-form {
                    display: block;
                    margin: 25px 15px 0;
                    padding: 20px;
                }
                
                .contact-card {
                    margin: -20px 15px 30px;
                    padding: 25px 20px;
                }
                
                .contact-card h2 {
                    font-size: 1.75rem;
                }
                
                .contact-card p {
                    font-size: 1rem;
                }
                
                .form-container {
                    padding: 25px 20px;
                    margin-bottom: 25px;
                }
                
                .sidebar-box {
                    padding: 24px 20px;
                    margin-bottom: 24px;
                }
                
                .footer-content {
                    gap: 40px;
                }
                
                .how-it-works {
                    margin-top: 30px;
                    padding-top: 25px;
                }
                
                .how-it-works h3 {
                    font-size: 1.3rem;
                    margin-bottom: 30px;
                }
                
                .process-steps {
                    flex-direction: column;
                    gap: 20px;
                    padding: 0;
                }
                
                .process-step {
                    flex: none;
                    width: 100%;
                    flex-direction: row;
                    text-align: left;
                    gap: 15px;
                    padding: 10px 0;
                }
                
                .step-icon {
                    margin-bottom: 0;
                    flex-shrink: 0;
                }
                
                .step-connector {
                    width: 2px;
                    height: 30px;
                    max-width: none;
                    margin: 0 auto;
                }
                
                .animated-line {
                    width: 2px;
                    height: 100%;
                    background: linear-gradient(180deg, var(--accent-color), var(--accent-hover));
                    transform: none;
                    left: 50%;
                    transform: translateX(-50%);
                }
                
                .animated-line::before {
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(180deg, transparent, var(--white), transparent);
                    animation: flowVertical 2s ease-in-out infinite;
                }
                
                .arrow-head {
                    top: 100%;
                    left: 50%;
                    right: auto;
                    transform: translateX(-50%) rotate(135deg);
                }
            }
            
            @media (max-width: 576px) {
                .container {
                    padding: 0 15px;
                }
                
                .header-container {
                    padding: 15px;
                }
                
                .mobile-partner-btn,
                .mobile-download-btn {
                    width: 36px;
                    height: 36px;
                    font-size: 14px;
                }
                
                .mobile-header-buttons {
                    right: 65px;
                    gap: 8px;
                }
                
                .mobile-download-btn {
                    right: 50px;
                }
                
                .hero {
                    padding: 50px 0;
                }
                
                .hero h1 {
                    font-size: 1.8rem;
                    margin-bottom: 15px;
                }
                
                .hero p {
                    font-size: 1rem;
                    margin-bottom: 25px;
                    padding: 0;
                }
                
                .download-btn {
                    padding: 14px 28px;
                    font-size: 1rem;
                }
                
                .mobile-hero-form {
                    padding: 18px;
                    margin: 20px 0px 0;
                }
                
                .page-title {
                    font-size: 1.75rem;
                    margin-bottom: 1.5rem;
                }
                
                .page-content {
                    padding: 20px 18px;
                }
                
                .contact-card {
                    padding: 20px 18px;
                    margin: -15px 10px 25px;
                }
                
                .contact-card h2 {
                    font-size: 1.5rem;
                }
                
                .form-container {
                    padding: 20px 18px;
                }
                
                .sidebar-box {
                    padding: 20px 18px;
                }
                
                .footer-content {
                    gap: 30px;
                }
                
                .footer-column {
                    text-align: center;
                }
                
                .social-links {
                    justify-content: center;
                }
                
                .process-step {
                    gap: 12px;
                }
                
                .icon-circle {
                    width: 40px;
                    height: 40px;
                }
                
                .icon-circle i {
                    font-size: 1rem;
                }
                
                .step-number {
                    width: 18px;
                    height: 18px;
                    font-size: 0.6rem;
                }
                
                .step-content h4 {
                    font-size: 0.8rem;
                }
                
                .step-connector {
                    height: 25px;
                }
            }
            
            @media (max-width: 480px) {
                .hero h1 {
                    font-size: 1.6rem;
                }
                
                .hero p {
                    font-size: 0.95rem;
                }
                
                .download-btn {
                    padding: 12px 24px;
                    font-size: 0.95rem;
                }
                
                .mobile-hero-form {
                    padding: 15px;
                }
                
                .page-content {
                    padding: 18px 15px;
                }
                
                .form-container {
                    padding: 18px 15px;
                }
                
                .sidebar-box {
                    padding: 18px 15px;
                }
                
                .footer-content {
                    grid-template-columns: 1fr;
                    gap: 25px;
                }
                
                .mobile-partner-btn,
                .mobile-download-btn {
                    width: 34px;
                    height: 34px;
                    font-size: 13px;
                }
                
                .mobile-header-buttons {
                    right: 60px;
                }
                
                .mobile-download-btn {
                    right: 16px;
                }
            }

            @keyframes flow {
                0% {
                    left: -100%;
                }
                100% {
                    left: 100%;
                }
            }

            @keyframes flowVertical {
                0% {
                    top: -100%;
                }
                100% {
                    top: 100%;
                }
            }

            @keyframes iconPulse {
                0%, 100% {
                    transform: scale(1);
                }
                50% {
                    transform: scale(1.05);
                }
            }

            @keyframes numberBounce {
                0%, 20%, 50%, 80%, 100% {
                    transform: translateY(0);
                }
                40% {
                    transform: translateY(-3px);
                }
                60% {
                    transform: translateY(-2px);
                }
            }
       