/* Reset and Base Styles - Exact from React Project */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Primary Colors - Matching Logo */
            --primary-red: #ff6b35;
            --primary-red-light: #ff8a5b;
            --primary-red-dark: #e55a2b;
            --primary-blue: #4a90e2;
            --primary-blue-light: #6ba3e8;
            --primary-blue-dark: #3a7bc8;
            
            /* Gradient Colors */
            --gradient-primary: linear-gradient(90deg, #00FF00, #800080); /* green to purple */
            /*--gradient-primary: linear-gradient(135deg, #ff6b35 0%, #4a90e2 100%);*/
            --gradient-secondary: linear-gradient(135deg, #ff8a5b 0%, #6ba3e8 100%);
            --gradient-bg: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            
            /* Neutral Colors */
            --text-primary: #1a202c;
            --text-secondary: #4a5568;
            --text-muted: #718096;
            --bg-primary: #ffffff;
            --bg-secondary: #f7fafc;
            --border-color: #e2e8f0;
            
            /* Shadows */
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--gradient-bg);
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        /* Touch-friendly interactions */
        * {
            -webkit-tap-highlight-color: transparent;
        }

        button, a, input, textarea, select {
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        /* Improved focus states for accessibility */
        button:focus-visible,
        a:focus-visible,
        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible {
            outline: 2px solid var(--primary-blue);
            outline-offset: 2px;
        }

        /* Better text selection */
        ::selection {
            background-color: var(--primary-blue);
            color: white;
        }

        ::-moz-selection {
            background-color: var(--primary-blue);
            color: white;
        }

        /* Modern Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        .animate-fade-in-left {
            animation: fadeInLeft 0.6s ease-out;
        }

        .animate-fade-in-right {
            animation: fadeInRight 0.6s ease-out;
        }

        .animate-pulse {
            animation: pulse 2s infinite;
        }

        .animate-float {
            animation: float 3s ease-in-out infinite;
        }

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

        h1 {
            font-size: 3rem;
        }

        h2 {
            font-size: 2.5rem;
        }

        h3 {
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        /* Utility Classes */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .text-center {
            text-align: center;
        }

        .flex {
            display: flex;
        }

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

        .items-center {
            align-items: center;
        }

        .justify-center {
            justify-content: center;
        }

        .justify-between {
            justify-content: space-between;
        }

        .space-between > * + * {
            margin-left: 1rem;
        }

        .grid {
            display: grid;
        }

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

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

        /* Button Styles */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            border: none;
            border-radius: 0.75rem;
            font-size: 1.125rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
            min-height: 44px;
            min-width: 44px;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: var(--shadow-md);
        }

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

        .btn-secondary {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
            position: relative;
        }

        .btn-secondary::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
            z-index: -1;
        }

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

        .btn-secondary:hover::after {
            width: 100%;
        }

        .btn-white {
            background-color: white;
            color: #1d4ed8;
        }

        .btn-white:hover {
            background-color: #f3f4f6;
        }

        /* Card Styles */
        .card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-card {
            text-align: center;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .step-card {
            text-align: center;
            background: white;
        }

        /* Icon Containers */
        .icon-container {
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .icon-container.blue {
            background-color: #1d4ed8;
        }

        .icon-container.cyan {
            background-color: #0891b2;
        }

        .icon-container.emerald {
            background-color: #059669;
        }

        .icon-container svg {
            width: 2rem;
            height: 2rem;
            color: white;
        }

        /* Step Number */
        .step-number {
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-weight: 700;
            font-size: 0.875rem;
        }

        .step-number.blue {
            background-color: #dbeafe;
            color: #1d4ed8;
        }

        .step-number.cyan {
            background-color: #cffafe;
            color: #0891b2;
        }

        .step-number.emerald {
            background-color: #d1fae5;
            color: #059669;
        }

        /* Navigation Styles - Exact from React Project */
        .navigation {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            box-shadow: var(--shadow-sm);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 4rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            cursor: pointer;
        }

        .logo-img {
            width: 32px;
            height: 32px;
            object-fit: contain;
            display: block;
        }

        .logo svg {
            width: 2rem;
            height: 2rem;
            color: #1d4ed8;
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        /* Right side navigation group */
        .nav-right {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-blue);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-login {
            background: var(--gradient-primary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 0.75rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }

        .nav-login:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }

        /* Mobile Menu */
        .mobile-menu-button {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            color: #4b5563;
            padding: 0.5rem;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
        }

        .mobile-menu-button:hover {
            color: var(--primary-blue);
            background-color: rgba(74, 144, 226, 0.1);
        }

        .mobile-menu-button svg {
            width: 1.5rem;
            height: 1.5rem;
        }

        .mobile-menu {
            display: none;
            padding: 1rem 0;
            border-top: 1px solid #e5e7eb;
        }

        .mobile-menu.open {
            display: block;
        }

        .mobile-nav-link {
            display: block;
            width: 100%;
            padding: 0.5rem 0;
            color: #4b5563;
            text-decoration: none;
            font-weight: 500;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-size: 1rem;
        }

        .mobile-nav-link:hover {
            color: #1d4ed8;
        }

        .mobile-nav-login {
            margin-top: 0.5rem;
            width: 100%;
            background-color: #1d4ed8;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            display: block;
            text-align: center;
        }

        .mobile-nav-login:hover {
            background-color: #1e40af;
        }

        /* Enhanced Mobile Responsiveness */
        @media (max-width: 1024px) {
            .nav-container {
                padding: 0 1.5rem;
            }
            
            .nav-links {
                gap: 1.5rem;
            }
            
            .nav-link {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 0 1rem;
                height: 3.5rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-menu-button {
                display: block;
            }
        }

        /* Hero Section Styles - Exact from React Project */
        .hero {
            padding-top: 4rem;
            min-height: 100vh;
            background: var(--gradient-bg);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 1rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            text-align: left;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            max-width: 32rem;
        }

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

        .hero-visual {
            position: relative;
        }

        .hero-card {
            background: var(--bg-primary);
            border-radius: 1.5rem;
            box-shadow: var(--shadow-xl);
            padding: 2rem;
            border: 1px solid var(--border-color);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            animation: float 6s ease-in-out infinite;
        }

        .hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }

        .hero-card-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 20rem;
            text-align: center;
        }

        /* Logo Container */
        .hero-logo-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        /* Sec2pay logo box */
        .sec2pay-logo-box {
            width: 8rem;
            height: 4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            margin-bottom: 0;
            padding: 0;
        }

        .sec2pay-logo-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        /* FASTag logo box */
        .hero-logo-box {
            width: 28rem;
            height: 20rem;
            border: none;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            margin-bottom: 0;
            padding: 0;
        }

        .hero-logo-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 0.5rem;
        }

        .hero-card svg {
            width: 6rem;
            height: 6rem;
            color: #1d4ed8;
            margin-bottom: 1rem;
        }

        .hero-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .hero-card p {
            color: #4b5563;
            margin: 0;
        }

        /* Enhanced Hero Responsiveness */
        @media (max-width: 1200px) {
            .hero-container {
                padding: 4rem 1.5rem;
                gap: 2.5rem;
            }
            
            .hero-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 3rem 1.5rem;
                gap: 2rem;
            }
            
            .hero-content {
                text-align: center;
            }
            
            .hero-title {
                font-size: 2.75rem;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding-top: 3.5rem;
                min-height: 90vh;
            }
            
            .hero-container {
                padding: 2.5rem 1rem;
                gap: 1.5rem;
            }
            
            .hero-title {
                font-size: 2.25rem;
                line-height: 1.2;
            }
            
            .hero-subtitle {
                font-size: 1.125rem;
                max-width: 100%;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-card {
                padding: 1.5rem;
            }
            
            .hero-card-content {
                height: 15rem;
            }
            
            .hero-logo-box {
                width: 20rem;
                height: 14rem;
            }
        }

        @media (max-width: 480px) {
            .hero-container {
                padding: 2rem 0.75rem;
            }
            
            .hero-title {
                font-size: 1.875rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-card {
                padding: 1rem;
            }
            
            .hero-card-content {
                height: 12rem;
            }
            
            .hero-logo-box {
                width: 16rem;
                height: 10rem;
            }
        }

        /* Section Styles - Exact from React Project */
        .section {
            padding: 5rem 0;
            position: relative;
        }

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

        .section-gray {
            background: var(--gradient-bg);
        }

        .section-blue {
            background: var(--gradient-primary);
            color: white;
            position: relative;
        }

        .section-blue::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .section-blue .section-title {
            color: white;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 48rem;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Enhanced Section Responsiveness */
        @media (max-width: 1024px) {
            .section {
                padding: 4rem 0;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .section-subtitle {
                font-size: 1.125rem;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 3rem 0;
            }
            
            .section-header {
                margin-bottom: 3rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .section {
                padding: 2.5rem 0;
            }
            
            .section-header {
                margin-bottom: 2rem;
            }
            
            .section-title {
                font-size: 1.75rem;
            }
            
            .section-subtitle {
                font-size: 0.95rem;
            }
        }

        .section-blue .section-subtitle {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Why Choose Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        /* Enhanced Responsive Grid */
        @media (max-width: 1200px) {
            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .feature-card {
                padding: 1.5rem;
            }
            
            .feature-icon {
                width: 3.5rem;
                height: 3.5rem;
            }
            
            .feature-icon svg {
                width: 1.75rem;
                height: 1.75rem;
            }
            
            .feature-title {
                font-size: 1.25rem;
            }
        }

        @media (max-width: 480px) {
            .features-grid {
                gap: 1rem;
            }
            
            .feature-card {
                padding: 1.25rem;
            }
            
            .feature-icon {
                width: 3rem;
                height: 3rem;
            }
            
            .feature-icon svg {
                width: 1.5rem;
                height: 1.5rem;
            }
            
            .feature-title {
                font-size: 1.125rem;
            }
        }

        .feature-card {
            background: var(--bg-primary);
            border-radius: 1.5rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .feature-icon {
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .feature-icon.blue {
            background-color: #1d4ed8;
        }

        .feature-icon.cyan {
            background-color: #0891b2;
        }

        .feature-icon.emerald {
            background-color: #059669;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .feature-description {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Steps Grid */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .step-card {
            background: var(--bg-primary);
            border-radius: 1.5rem;
            padding: 2rem;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }

        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .step-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
            font-size: 1.5rem;
        }

        .step-content {
            flex: 1;
        }

        .step-number {
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.5rem;
            font-weight: 700;
            font-size: 0.875rem;
        }

        .step-number.blue {
            background-color: #dbeafe;
            color: #1d4ed8;
        }

        .step-number.cyan {
            background-color: #cffafe;
            color: #0891b2;
        }

        .step-number.emerald {
            background-color: #d1fae5;
            color: #059669;
        }

        .step-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .step-description {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Contact Grid */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--bg-primary);
            border-radius: 1rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
            font-size: 1.25rem;
        }

        .contact-icon.blue {
            background: var(--primary-blue);
        }

        .contact-icon.cyan {
            background: #0891b2;
        }

        .contact-icon.emerald {
            background: #059669;
        }

        .contact-details h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .contact-details p {
            color: var(--text-secondary);
            margin: 0;
        }

        .contact-map {
            background: var(--bg-primary);
            border-radius: 1rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
        }

        /* CTA Section */
        .cta-content {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        /* Responsive Contact Grid */
        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .contact-map {
                height: 250px;
            }
        }

        /* Footer Styles - Exact from React Project */
        .footer {
            background-color: #1A1D24;
            color: white;
            padding: 4rem 0 2rem 0;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
            align-items: start;
        }

        .footer-section {
            display: flex;
            flex-direction: column;
        }

        .footer-section h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: white;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.4;
        }

        /* Company Section */
        .footer-company {
            max-width: 350px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .footer-logo-img {
            width: 32px;
            height: 32px;
            object-fit: contain;
            display: block;
        }

        .footer-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        .footer-description {
            color: #D1D5DB;
            margin-bottom: 0;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Links Sections */
        .footer-links-section,
        .footer-contact,
        .footer-legal {
            min-width: 140px;
        }

        /* Contact Section Specific */
        .footer-contact {
            min-width: 200px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

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

        .footer-link {
            color: #D1D5DB;
            text-decoration: none;
            transition: color 0.2s ease;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            padding: 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            text-align: left;
            width: 100%;
        }

        .footer-link:hover {
            color: white;
        }

        /* Contact Information */
        .contact-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .contact-links li {
            margin-bottom: 0.75rem;
        }

        .contact-link {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #D1D5DB;
            transition: color 0.2s ease;
            padding: 0;
            width: 100%;
        }

        .contact-link:hover {
            color: white;
        }

        .contact-icon {
            font-size: 1.2rem;
            width: 1.5rem;
            text-align: center;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 1.5rem;
            opacity: 1;
            visibility: visible;
        }

        .contact-text {
            font-size: 1rem;
            font-weight: normal;
            color: #D1D5DB;
            transition: color 0.2s ease;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.4;
            opacity: 1;
            visibility: visible;
        }

        /* Ensure contact details are always visible */
        .footer-contact .contact-links {
            opacity: 1;
            visibility: visible;
        }

        .footer-contact .contact-links li {
            opacity: 1;
            visibility: visible;
        }

        .footer-contact .contact-link {
            opacity: 1;
            visibility: visible;
        }

        .footer-contact .contact-text {
            opacity: 1;
            visibility: visible;
            color: #D1D5DB !important;
        }

        .footer-contact .contact-icon {
            opacity: 1;
            visibility: visible;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 2rem;
            text-align: center;
        }

        .footer-bottom p {
            color: #D1D5DB;
            margin: 0;
            font-size: 0.9rem;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: left;
            }
            
            .footer-container {
                padding: 0 1rem;
            }
            
            .footer-logo {
                justify-content: flex-start;
            }
            
            .contact-link {
                justify-content: flex-start;
            }
        }

        /* Login Page Styles - Exact from React Project */
        .login-section {
            padding-top: 6rem;
            padding-bottom: 6rem;
            background: var(--gradient-bg);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .login-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .login-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1rem;
            position: relative;
            z-index: 1;
        }

        .login-card {
            background: var(--bg-primary);
            border-radius: 1.5rem;
            box-shadow: var(--shadow-xl);
            padding: 3rem;
            width: 520px;
            margin: 0 auto;
            text-align: center;
            border: 1px solid var(--border-color);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.6s ease-out;
        }

        .login-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }

        .login-title {
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0 0 0.5rem 0;
            position: relative;
            z-index: 1;
        }

        .login-subtitle {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            font-size: 1.125rem;
            position: relative;
            z-index: 1;
        }

        .login-form { text-align: left; }

        .login-label {
            display: block;
            font-weight: 600;
            color: var(--text-primary);
            margin: 1.5rem 0 0.5rem 0;
            position: relative;
            z-index: 1;
        }

        .login-input {
            width: 100%;
            padding: 1rem 1.25rem;
            border: 2px solid var(--border-color);
            border-radius: 0.75rem;
            font-size: 1rem;
            outline: none;
            background: var(--bg-primary);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .login-input:focus { 
            border-color: var(--primary-blue); 
            box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.15);
            transform: translateY(-1px);
        }

        .login-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 1rem;
            position: relative;
            z-index: 1;
        }

        .remember { 
            display: inline-flex; 
            align-items: center; 
            gap: 0.5rem; 
            color: var(--text-secondary);
            font-weight: 500;
        }

        .forgot { 
            color: var(--primary-blue); 
            text-decoration: none; 
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .forgot:hover { 
            color: var(--primary-red);
            text-decoration: underline; 
        }

        .login-button {
            width: 100%;
            margin-top: 1.5rem;
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 0.75rem;
            font-weight: 700;
            font-size: 1.125rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .login-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .login-button:hover::before {
            left: 100%;
        }

        .login-button:hover { 
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        .login-separator { 
            display: flex; 
            align-items: center; 
            gap: 1rem; 
            margin: 1.5rem 0; 
            color: var(--text-muted);
            position: relative;
            z-index: 1;
        }

        .login-separator::before, .login-separator::after { 
            content: ""; 
            flex: 1; 
            height: 1px; 
            background: var(--border-color); 
        }

        .login-separator span { 
            white-space: nowrap; 
            font-weight: 500;
        }

        .signup-text { 
            color: var(--text-secondary); 
            text-align: center; 
            margin-top: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .signup-link { 
            color: var(--primary-blue); 
            text-decoration: none; 
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .signup-link:hover { 
            color: var(--primary-red);
            text-decoration: underline; 
        }

        /* Enhanced Login Responsiveness */
        @media (max-width: 1024px) {
            .login-container {
                padding: 0 1.5rem;
            }
            
            .login-card {
                width: 480px;
                padding: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .login-section {
                padding-top: 5rem;
                padding-bottom: 3rem;
            }
            
            .login-container {
                padding: 0 1rem;
            }
            
            .login-card {
                width: 100%;
                max-width: 400px;
                padding: 2rem 1.5rem;
                margin: 0 auto;
            }
            
            .login-title {
                font-size: 2.25rem;
            }
            
            .login-subtitle {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .login-section {
                padding-top: 4rem;
                padding-bottom: 2rem;
            }
            
            .login-container {
                padding: 0 0.75rem;
            }
            
            .login-card {
                padding: 1.5rem 1rem;
                margin: 0.5rem;
            }
            
            .login-title {
                font-size: 1.875rem;
            }
            
            .login-subtitle {
                font-size: 0.95rem;
            }
            
            .login-input {
                padding: 0.875rem 1rem;
                font-size: 0.95rem;
            }
            
            .login-button {
                padding: 0.875rem 1.25rem;
                font-size: 1rem;
            }
            
            .login-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
            }
        }

        /* Terms and Conditions Page Styles - Exact from React Project */
        .terms-page {
            padding-top: 6rem;
            padding-bottom: 4rem;
            background: var(--gradient-bg);
            min-height: 100vh;
            position: relative;
        }

        .terms-page::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .terms-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 1.5rem;
            position: relative;
            z-index: 1;
        }

        /* Header Section */
        .terms-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem 0;
        }

        .terms-title {
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .terms-intro {
            font-size: 1.125rem;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Terms Sections */
        .terms-sections {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        /* Terms Cards */
        .terms-card {
            background: var(--bg-primary);
            border-radius: 1rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .terms-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--gradient-primary);
        }

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

        .terms-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem 2rem 1rem 2rem;
            border-bottom: 1px solid var(--border-color);
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(74, 144, 226, 0.02) 100%);
        }

        .terms-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            font-weight: 700;
            font-size: 1.125rem;
            flex-shrink: 0;
        }

        .terms-section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
            line-height: 1.3;
        }

        .terms-content {
            padding: 1.5rem 2rem 2rem 2rem;
        }

        /* Terms List */
        .terms-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .terms-item {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 1rem;
            line-height: 1.6;
            color: var(--text-secondary);
            font-size: 1rem;
        }

        .terms-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.75rem;
            width: 6px;
            height: 6px;
            background: var(--primary-blue);
            border-radius: 50%;
            transform: translateY(-50%);
        }

        .terms-item:last-child {
            margin-bottom: 0;
        }

        /* Contact Section */
        .terms-contact {
            margin-top: 2rem;
        }

        .terms-contact-text {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            font-size: 1rem;
            line-height: 1.6;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(74, 144, 226, 0.05) 100%);
            border-radius: 0.75rem;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(4px);
            box-shadow: var(--shadow-sm);
        }

        .contact-icon {
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .contact-text {
            color: var(--text-primary);
            font-weight: 500;
            font-size: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .terms-container {
                padding: 0 1rem;
            }
            
            .terms-title {
                font-size: 2.25rem;
            }
            
            .terms-intro {
                font-size: 1rem;
            }
            
            .terms-card-header {
                padding: 1.25rem 1.5rem 0.75rem 1.5rem;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
            }
            
            .terms-content {
                padding: 1.25rem 1.5rem 1.5rem 1.5rem;
            }
            
            .terms-section-title {
                font-size: 1.25rem;
            }
            
            .terms-number {
                width: 2rem;
                height: 2rem;
                font-size: 1rem;
            }
            
            .contact-info {
                gap: 0.75rem;
            }
            
            .contact-item {
                padding: 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .terms-page {
                padding-top: 5rem;
            }
            
            .terms-title {
                font-size: 1.875rem;
            }
            
            .terms-card-header {
                padding: 1rem 1.25rem 0.5rem 1.25rem;
            }
            
            .terms-content {
                padding: 1rem 1.25rem 1.25rem 1.25rem;
            }
            
            .terms-item {
                font-size: 0.9rem;
                padding-left: 1.25rem;
            }
            
            .terms-item::before {
                width: 4px;
                height: 4px;
            }
        }

        /* Hidden class */
        .hidden { display: none; }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.875rem;
            }
            
            .grid-3 {
                grid-template-columns: 1fr;
            }
            
            .grid-2 {
                grid-template-columns: 1fr;
            }
            
            .btn {
                width: 100%;
                margin-bottom: 1rem;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.75rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            .card {
                padding: 1.5rem;
            }
        }
