 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            line-height: 1.6;
            color: #1e293b;
        }

        /* Header and Navigation */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #e2e8f0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #1e293b;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #64748b;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #3b82f6;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #3b82f6;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-button {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white !important;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #1e293b;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 120px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .hero h1 {
            font-size: clamp(48px, 8vw, 72px);
            font-weight: 800;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
        }

        .hero p {
            font-size: 20px;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto 40px;
            font-weight: 400;
        }

        .hero-button {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
            text-decoration: none;
            display: inline-block;
        }

        .hero-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
        }

        /* About Section */
        .about {
            background: white;
        }

        .about h2 {
            font-size: 42px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 60px;
            text-align: center;
        }

        .process-flow {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .process-step {
            background: linear-gradient(135deg, #f8faff, #dbeafe);
            border: 2px solid #3b82f6;
            border-radius: 16px;
            padding: 24px;
            min-width: 200px;
            max-width: 250px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
        }

        .process-step h3 {
            font-size: 18px;
            font-weight: 600;
            color: #1e40af;
            margin-bottom: 8px;
        }

        .process-step p {
            font-size: 14px;
            color: #64748b;
            line-height: 1.4;
        }

        .arrow {
            font-size: 48px;
            font-weight: 900;
            color: #3b82f6;
            text-shadow: 
                2px 2px 4px rgba(59, 130, 246, 0.3),
                -1px -1px 2px rgba(255, 255, 255, 0.8);
            filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.2));
            animation: pulse 2s infinite;
            position: relative;
            display: inline-block;
            padding: 10px;
        }

        .arrow::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
            border-radius: 50%;
            z-index: -1;
        }

        @keyframes pulse {
            0%, 100% { 
                opacity: 1; 
                transform: scale(1);
            }
            50% { 
                opacity: 0.7; 
                transform: scale(1.1);
            }
        }

        .intro-text {
            font-size: 18px;
            color: #64748b;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

        /* Services Section */
        .services {
            background: #f8fafc;
        }

        .services h2 {
            font-size: 42px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 60px;
            text-align: center;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .service-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 12px;
        }

        .service-card p {
            color: #64748b;
            line-height: 1.6;
        }

        /* How It Works Section */
        .how-it-works {
            background: white;
        }

        .how-it-works h2 {
            font-size: 42px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 60px;
            text-align: center;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .step-card {
            text-align: center;
            padding: 20px;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        .step-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 12px;
        }

        .step-card p {
            color: #64748b;
            line-height: 1.6;
        }

        /* Why Choose Us Section */
        .why-choose-us {
            background: #f8fafc;
        }

        .why-choose-us h2 {
            font-size: 42px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 60px;
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .feature-icon {
            font-size: 32px;
            min-width: 40px;
        }

        .feature-card p {
            color: #64748b;
            font-weight: 500;
        }

        /* Testimonials Section */
        .testimonials {
            background: white;
        }

        .testimonials h2 {
            font-size: 42px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 60px;
            text-align: center;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: #f8fafc;
            border-radius: 16px;
            padding: 32px;
            border-left: 4px solid #3b82f6;
        }

        .testimonial-text {
            font-style: italic;
            color: #64748b;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .testimonial-author {
            font-weight: 600;
            color: #1e293b;
        }

        /* Final CTA Section */
        .final-cta {
            background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
            color: white;
            text-align: center;
        }

        .final-cta h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .final-cta p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .final-cta-button {
            background: white;
            color: #1e293b;
            padding: 16px 32px;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .final-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 40px;
            border-radius: 20px;
            width: 90%;
            max-width: 500px;
            position: relative;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            animation: slideIn 0.3s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .close {
            position: absolute;
            right: 20px;
            top: 20px;
            font-size: 28px;
            font-weight: bold;
            color: #64748b;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close:hover {
            color: #1e293b;
        }

        .modal h2 {
            color: #1e293b;
            margin-bottom: 20px;
            font-size: 28px;
            font-weight: 700;
        }

        .modal p {
            color: #64748b;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #1e293b;
            font-weight: 600;
        }

        .form-group input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 14px 20px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
        }

        .success-message {
            display: none;
            text-align: center;
            color: #10b981;
            font-weight: 600;
            font-size: 18px;
            margin-top: 20px;
        }

        /* Footer */
        footer {
            background: #1e293b;
            color: white;
            padding: 40px 0 20px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            font-size: 20px;
            font-weight: 600;
        }

        .footer-section p {
            color: #94a3b8;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #3b82f6;
        }

        .footer-bottom {
            border-top: 1px solid #334155;
            margin-top: 30px;
            padding-top: 20px;
            text-align: center;
            color: #94a3b8;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .nav-links {
                gap: 20px;
            }
            
            .nav-links a {
                font-size: 14px;
            }
            
            .cta-button {
                padding: 10px 16px;
                font-size: 14px;
            }
        }

        @media (max-width: 900px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: flex-start;
                padding-top: 50px;
                gap: 30px;
                transition: left 0.3s ease;
                border-top: 1px solid #e2e8f0;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links a {
                font-size: 18px;
                padding: 12px 24px;
                width: 100%;
                text-align: center;
                border-radius: 8px;
                transition: all 0.3s ease;
            }

            .nav-links a:hover {
                background: #f1f5f9;
            }

            .nav-links a::after {
                display: none;
            }

            .cta-button {
                margin-top: 20px;
                padding: 16px 32px !important;
                font-size: 16px !important;
                width: auto !important;
            }

            .menu-toggle {
                display: flex;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }

            .hero {
                padding: 80px 0;
            }

            .services-grid,
            .steps-grid,
            .features-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .service-card,
            .testimonial-card {
                padding: 24px;
            }

            .process-flow {
                flex-direction: column;
            }
            
            .arrow {
                transform: rotate(90deg);
                font-size: 40px;
            }
            
            .process-step {
                max-width: 100%;
                min-width: auto;
            }

            .modal-content {
                margin: 15% auto;
                padding: 30px 20px;
            }
        }