        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #64748b;
            --dark: #1e293b;
            --light: #f8fafc;
            --radius: 8px;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        /* Reset Bootstrap defaults that break our design */
        .navbar {
            padding: 0;
        }

        .navbar-brand {
            margin-right: 0;
            padding: 0;
        }

        .nav-link {
            padding: 0.5rem 0;
        }

        .btn {
            border: none;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            padding-top: 80px;
            /* For fixed navbar */
        }

        /* Header & Navigation - EXACT SAME AS ORIGINAL */
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

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

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 0.5rem;
        }

        /* Desktop Navigation */
        .nav-desktop {
            display: flex;
            align-items: center;
        }

        .nav-links {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }

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

        .nav-buttons {
            display: flex;
            align-items: center;
            margin-left: 2rem;
        }

        .btn-login {
            background: none;
            border: none;
            color: var(--dark);
            font-weight: 500;
            cursor: pointer;
            margin-right: 1rem;
            text-decoration: none;
        }

        .btn-register {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: var(--radius);
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s;
            text-decoration: none;
        }

        .btn-register:hover {
            background-color: var(--primary-dark);
        }

        /* Mobile Navigation */
        .nav-mobile {
            display: none;
        }

        .mobile-menu-toggle {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
        }

        .mobile-menu {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            height: calc(100vh - 70px);
            background-color: white;
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
            z-index: 999;
            overflow-y: auto;
            padding: 2rem;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-nav-links {
            list-style: none;
            margin-bottom: 2rem;
        }

        .mobile-nav-links li {
            margin-bottom: 1.5rem;
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-size: 1.2rem;
            font-weight: 500;
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px solid #e2e8f0;
        }

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

        .mobile-nav-buttons .btn-login,
        .mobile-nav-buttons .btn-register {
            width: 100%;
            text-align: center;
            padding: 0.75rem;
        }

        /* Hero Section with Bootstrap 5 */
        .hero-section {
            position: relative;
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
            color: white;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.1"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
            background-size: cover;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

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

        .btn-primary-custom {
            background-color: white;
            color: var(--primary);
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
        }

        .btn-primary-custom:hover {
            background-color: #f1f5f9;
            transform: translateY(-2px);
            color: var(--primary);
        }

        .btn-outline-custom {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
        }

        .btn-outline-custom:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
            color: white;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .stat {
            text-align: center;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius);
            backdrop-filter: blur(10px);
            min-width: 120px;
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .dashboard-preview {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            overflow: hidden;
            width: 100%;
            max-width: 500px;
        }

        .dashboard-header {
            background-color: #1e293b;
            padding: 1rem;
            display: flex;
            align-items: center;
        }

        .dashboard-dots {
            display: flex;
            gap: 0.5rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .dot.red {
            background-color: #f87171;
        }

        .dot.yellow {
            background-color: #fbbf24;
        }

        .dot.green {
            background-color: #34d399;
        }

        .dashboard-content {
            padding: 1.5rem;
        }

        .dashboard-nav {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 1rem;
            flex-wrap: wrap;
        }

        .nav-item {
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 500;
            color: var(--secondary);
            font-size: 0.9rem;
            flex: 1;
            min-width: 80px;
            text-align: center;
        }

        .nav-item.active {
            background-color: var(--primary);
            color: white;
        }

        .dashboard-stats {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .stat-card {
            background-color: #1e293b;
            color: white;
            padding: 1rem;
            border-radius: var(--radius);
            display: flex;
            align-items: center;
        }

        .stat-icon {
            background-color: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
            color: white;
        }

        .stat-label {
            font-size: 0.8rem;
            opacity: 0.8;
            color: white;
        }

        .recent-activity h4 {
            margin-bottom: 1rem;
            color: var(--dark);
            font-size: 1.1rem;
            text-align: center;
        }

        .activity-item {
            display: flex;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px solid #f1f5f9;
        }

        .activity-item i {
            color: var(--primary);
            flex-shrink: 0;
        }

        .activity-item span {
            font-size: 0.9rem;
            color: var(--dark);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 992px) {
            .hero-section {
                padding: 100px 0 60px;
            }

            .hero-title {
                font-size: 2.25rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

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

            .dashboard-preview {
                max-width: 450px;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 40px;
                text-align: center;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

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

            .hero-stats {
                gap: 1rem;
            }

            .stat {
                min-width: 100px;
                flex: 1;
            }

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

            .nav-item {
                flex: none;
                min-width: 70px;
            }
        }

        @media (max-width: 576px) {
            .hero-section {
                padding: 60px 0 30px;
            }

            .hero-title {
                font-size: 1.75rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary-custom,
            .btn-outline-custom {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

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

            .stat {
                min-width: auto;
            }

            .dashboard-preview {
                margin: 0 auto;
            }

            .dashboard-content {
                padding: 1rem;
            }

            .dashboard-stats {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 400px) {
            .hero-title {
                font-size: 1.5rem;
            }

            .hero-badge {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }

            .dashboard-nav {
                gap: 0.25rem;
            }

            .nav-item {
                padding: 0.4rem 0.5rem;
                font-size: 0.8rem;
                min-width: 60px;
            }
        }


        .stat {
            text-align: center;
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .dashboard-preview {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            overflow: hidden;
            width: 100%;
            max-width: 500px;
        }

        .dashboard-header {
            background-color: #1e293b;
            padding: 1rem;
            display: flex;
            align-items: center;
        }

        .dashboard-dots {
            display: flex;
            gap: 0.5rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .dot.red {
            background-color: #f87171;
        }

        .dot.yellow {
            background-color: #fbbf24;
        }

        .dot.green {
            background-color: #34d399;
        }

        .dashboard-content {
            padding: 1.5rem;
        }

        .dashboard-nav {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 1rem;
        }

        .nav-item {
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 500;
            color: var(--secondary);
        }

        .nav-item.active {
            background-color: var(--primary);
            color: white;
        }

        .dashboard-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .stat-card {
            background-color: #1e293b;
            color: white;
            padding: 1rem;
            border-radius: var(--radius);
            display: flex;
            align-items: center;
        }

        .stat-icon {
            background-color: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.8rem;
            opacity: 0.8;
        }

        .recent-activity h4 {
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .activity-item {
            display: flex;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px solid #f1f5f9;
        }

        .activity-item i {
            margin-right: 0.75rem;
            color: var(--primary);
        }

        /* Features Section - EXACT SAME */
        .section-bg {
            background-color: #f8fafc;
            padding: 80px 0;
        }

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

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--secondary);
            max-width: 600px;
            margin: 0 auto;
        }

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

        .feature-card {
            background-color: white;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: #dbeafe;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary);
            font-size: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .feature-card p {
            color: var(--secondary);
            margin-bottom: 1.5rem;
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f1f5f9;
            position: relative;
            padding-left: 1.5rem;
        }

        .feature-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        /* How It Works Section - EXACT SAME */
        #how-it-works {
            padding: 80px 0;
        }

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

        .process-step {
            text-align: center;
            padding: 2rem;
        }

        .step-number {
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background-color: #dbeafe;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--primary);
            font-size: 2rem;
        }

        .process-step h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .process-step p {
            color: var(--secondary);
        }

        /* Pricing Section - Responsive Fix */
        .pricing-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .pricing-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem 2rem;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 5px 10px -5px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            border: 1px solid #e2e8f0;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
        }

        .pricing-card.popular {
            border: 2px solid var(--primary);
            transform: scale(1.02);
        }

        .pricing-card.popular:hover {
            transform: scale(1.02) translateY(-8px);
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #e2e8f0;
        }

        .pricing-name {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .pricing-description {
            color: var(--secondary);
            font-size: 1rem;
            line-height: 1.5;
        }

        .pricing-price {
            text-align: center;
            margin-bottom: 2rem;
        }

        .price-amount {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--dark);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .price-currency {
            font-size: 1.5rem;
            color: var(--secondary);
            font-weight: 600;
        }

        .price-period {
            color: var(--secondary);
            font-size: 1rem;
            font-weight: 500;
        }

        .pricing-features {
            flex-grow: 1;
            margin-bottom: 2.5rem;
        }

        .pricing-features .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pricing-features .feature-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid #f1f5f9;
            position: relative;
            padding-left: 2rem;
            color: var(--dark);
            font-size: 0.95rem;
        }

        .pricing-features .feature-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
            width: 20px;
            height: 20px;
            background: #dbeafe;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }

        .pricing-button {
            display: block;
            width: 100%;
            padding: 1rem 2rem;
            text-align: center;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-transform: none;
        }

        .pricing-button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
            color: white;
            text-decoration: none;
        }

        .pricing-card.popular .pricing-button {
            background: var(--primary-dark);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }

        .pricing-card.popular .pricing-button:hover {
            background: #1e40af;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        }

        .pricing-note {
            text-align: center;
            margin-top: 3rem;
            color: var(--secondary);
            font-size: 1rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 1rem;
        }

        /* Mobile Responsive Styles */
        @media (max-width: 1024px) {
            .pricing-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 1.5rem;
                padding: 0 1rem;
            }

            .pricing-card {
                padding: 2rem 1.5rem;
            }

            .price-amount {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .pricing-section {
                padding: 60px 0;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                gap: 2rem;
            }

            .pricing-card.popular {
                transform: scale(1);
            }

            .pricing-card.popular:hover {
                transform: translateY(-8px);
            }

            .pricing-card {
                padding: 2rem;
            }

            .price-amount {
                font-size: 2.75rem;
            }

            .pricing-name {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .pricing-section {
                padding: 40px 0;
            }

            .pricing-grid {
                padding: 0 0.5rem;
            }

            .pricing-card {
                padding: 1.5rem;
                border-radius: 12px;
            }

            .price-amount {
                font-size: 2.5rem;
            }

            .pricing-features .feature-list li {
                padding: 0.6rem 0;
                font-size: 0.9rem;
                padding-left: 1.75rem;
            }

            .pricing-button {
                padding: 0.875rem 1.5rem;
                font-size: 1rem;
            }

            .popular-badge {
                font-size: 0.7rem;
                padding: 0.4rem 1.25rem;
            }
        }

        /* Ensure proper spacing on very small screens */
        @media (max-width: 360px) {
            .pricing-card {
                padding: 1.25rem;
            }

            .price-amount {
                font-size: 2.25rem;
            }

            .pricing-features .feature-list li {
                font-size: 0.85rem;
                padding-left: 1.5rem;
            }
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: start;
        }

        .contact-info {
            padding: 2rem 0;
        }

        .contact-info h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .contact-info>p {
            color: var(--secondary);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
        }

        .contact-details {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .contact-details li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: #f8fafc;
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
            transition: all 0.3s ease;
        }

        .contact-details li:hover {
            background: #f0f9ff;
            transform: translateX(5px);
        }

        .contact-details li i {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-details li div {
            flex: 1;
        }

        .contact-details li strong {
            display: block;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .contact-details li p {
            color: var(--secondary);
            margin: 0;
            font-size: 1rem;
            line-height: 1.5;
        }

        /* Contact Form */
        .contact-form {
            background: #f8fafc;
            padding: 3rem;
            border-radius: 16px;
            box-shadow: var(--shadow);
            border: 1px solid #e2e8f0;
        }

        .contact-form h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--dark);
            text-align: center;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
            font-size: 0.95rem;
        }

        .form-control {
            width: 100%;
            padding: 1rem 1.25rem;
            border: 2px solid #e2e8f0;
            border-radius: var(--radius);
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
            font-family: inherit;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
            background: white;
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
            line-height: 1.5;
        }

        .submit-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            text-transform: none;
            font-family: inherit;
        }

        .submit-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Responsive Contact Section */
        @media (max-width: 1024px) {
            .contact-grid {
                gap: 3rem;
                padding: 0 2rem;
            }

            .contact-form {
                padding: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 60px 0;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
                padding: 0 1rem;
            }

            .contact-info {
                padding: 0;
                text-align: center;
            }

            .contact-info h3 {
                font-size: 1.75rem;
            }

            .contact-details li {
                text-align: left;
                padding: 1.25rem;
            }

            .contact-details li i {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .contact-form {
                padding: 2rem;
            }

            .contact-form h3 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .contact-section {
                padding: 40px 0;
            }

            .contact-grid {
                gap: 2rem;
                padding: 0 0.5rem;
            }

            .contact-info h3 {
                font-size: 1.5rem;
            }

            .contact-info>p {
                font-size: 1rem;
            }

            .contact-details li {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem 1rem;
            }

            .contact-details li i {
                margin-right: 0;
                margin-bottom: 1rem;
                width: 50px;
                height: 50px;
            }

            .contact-form {
                padding: 1.5rem;
                border-radius: 12px;
            }

            .contact-form h3 {
                font-size: 1.4rem;
                margin-bottom: 1.5rem;
            }

            .form-control {
                padding: 0.875rem 1rem;
            }

            .submit-btn {
                padding: 0.875rem 2rem;
                font-size: 1rem;
            }
        }

        /* Form Validation Styles */
        .form-control:invalid:not(:focus):not(:placeholder-shown) {
            border-color: #ef4444;
        }

        .form-control:valid:not(:focus):not(:placeholder-shown) {
            border-color: #10b981;
        }

        /* Loading State */
        .submit-btn.loading {
            position: relative;
            color: transparent;
        }

        .submit-btn.loading::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            top: 50%;
            left: 50%;
            margin-left: -10px;
            margin-top: -10px;
            border: 2px solid #ffffff;
            border-radius: 50%;
            border-right-color: transparent;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* Success Message */
        .form-success {
            background: #d1fae5;
            border: 1px solid #10b981;
            color: #065f46;
            padding: 1rem;
            border-radius: var(--radius);
            margin-bottom: 1.5rem;
            text-align: center;
            display: none;
        }

        .form-success.show {
            display: block;
        }

        /* CTA Section - EXACT SAME */
        .cta-section {
            background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        .cta-features {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .cta-feature {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .cta-feature i {
            font-size: 2rem;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        /* Footer Section - EXACT SAME */
        footer {
            background-color: #0f172a;
            color: white;
            padding: 60px 0 20px;
        }

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

        .footer-about h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-about p {
            color: #94a3b8;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: white;
        }

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

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

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-contact h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-contact p {
            color: #94a3b8;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        .footer-contact i {
            margin-right: 0.75rem;
            color: var(--primary);
            width: 20px;
        }

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

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #1e293b;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

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

        .footer-bottom {
            border-top: 1px solid #1e293b;
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #94a3b8;
            font-size: 0.9rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-bottom-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: white;
        }

        /* WhatsApp Floating Button - EXACT SAME */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 1000;
        }

        .whatsapp-link {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .whatsapp-link:hover {
            background: #128C7E;
            transform: translateY(-2px) scale(1.1);
            box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-icon {
            font-size: 28px;
        }

        /* Responsive Styles - EXACT SAME */
        @media (max-width: 1024px) {
            .hero-grid {
                gap: 2rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }

            .nav-mobile {
                display: block;
            }

            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

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

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

            .dashboard-preview {
                max-width: 100%;
            }

            .cta-features {
                flex-direction: column;
                gap: 1.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

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

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .dashboard-stats {
                grid-template-columns: 1fr;
            }
        }


        /* Form Validation Styles */
        .was-validated .form-control:valid,
        .form-control.is-valid {
            border-color: #10b981;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2310b981' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right calc(0.375em + 0.1875rem) center;
            background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
        }

        .was-validated .form-control:invalid,
        .form-control.is-invalid {
            border-color: #ef4444;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ef4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6.4.4.4-.4'/%3e%3cpath d='M6 7v2'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right calc(0.375em + 0.1875rem) center;
            background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
        }

        /* Loading State */
        .submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .btn-loading .spinner-border {
            width: 1rem;
            height: 1rem;
        }

        /* Alert Styles */
        .alert {
            border: none;
            border-radius: 8px;
            padding: 1rem 1.5rem;
        }

        .alert-success {
            background: #d1fae5;
            color: #065f46;
            border-left: 4px solid #10b981;
        }

        .alert-danger {
            background: #fee2e2;
            color: #991b1b;
            border-left: 4px solid #ef4444;
        }

        .alert i {
            font-size: 1.1rem;
        }