
        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #8b5cf6;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
            --light-gray: #e2e8f0;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --transition: all 0.2s ease;
        }
        
        /* Remove all animations for instant loading */
        *,
        *::before,
        *::after,
        [data-aos] {
            animation-duration: 0s !important;
            animation-delay: 0s !important;
            transition-duration: 0s !important;
            transition-delay: 0s !important;
            animation: none !important;
            transition: none !important;
            transform: none !important;
        }
        
        /* Allow essential footer interactions */
        .footer *,
        .footer *:hover {
            transition: all 0.3s ease !important;
            transform: initial !important;
        }
        
        /* Disable hover effects that might cause visual jumping (except footer) */
        *:hover:not(.footer *) {
            transform: none !important;
        }
        
        /* Respect and enforce reduced motion for all users */
        @media (prefers-reduced-motion: reduce), (prefers-reduced-motion: no-preference) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        p {
            margin-bottom: 1rem;
        }
        a {
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 16px;
        }
        .btn-primary {
            background: var(--primary);
            color: white;
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        .btn-secondary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .section {
            padding: 80px 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-header h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        .section-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
            margin-top: 0;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            opacity: 0.1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: white;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        /* Marquee */
        .marquee-section {
            background: var(--primary);
            color: white;
            padding: 15px 0;
            overflow: hidden;
        }
        .marquee-container {
            display: flex;
            white-space: nowrap;
            animation: none;
        }
        .marquee-content span {
            margin-right: 40px;
            font-size: 18px;
            font-weight: 500;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        /* Services Section */
        .services-section {
            background: white;
            padding: 60px 0;
            position: relative;
        }
        .services-section .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .services-section .section-header h2 {
            color: #1a1a1a;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        .services-section .section-header p {
            color: #666666;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 40px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        .service-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 2px solid #f5f5f5;
            transition: all 0.3s ease;
            position: relative;
            transform: translateY(0);
            height: 320px;
            display: flex;
            flex-direction: column;
        }
        .service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: #FF6B00;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .service-item:hover::before {
            transform: scaleX(1);
        }
        .service-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(255, 107, 0, 0.15);
            border-color: #FF6B00;
        }
        .service-header {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: #f8f9fa;
            border-bottom: 1px solid #e9ecef;
            position: relative;
            flex-shrink: 0;
        }
        .service-icon-wrapper {
            width: 20px;
            height: 20px;
            background: #FF6B00;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }
        .service-icon-wrapper::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: rotate(45deg) translateX(-100%);
            transition: transform 0.25s ease;
        }
        .service-item:hover .service-icon-wrapper::after {
            transform: rotate(45deg) translateX(100%);
        }
        .service-title {
            flex: 1;
        }
        .service-title h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1a1a1a;
            margin: 0 0 5px 0;
            line-height: 1.3;
        }
        .service-tag {
            display: inline-block;
            background: #1a1a1a;
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .service-body {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .service-body p {
            color: #666666;
            line-height: 1.6;
            margin-bottom: 15px;
            font-size: 0.9rem;
            flex-grow: 1;
        }
        .service-features {
            display: flex;
            flex-direction: column;
            gap: 2px;
            margin-bottom: 10px;
        }
        .feature-item {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 2px 0;
        }
        .services-section .feature-item i,
        .service-features .feature-item i {
            color: #FF6B00 !important;
            font-size: 0.7rem !important;
            width: 14px !important;
            height: 14px !important;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            background: none !important;
            box-shadow: none !important;
        }
        .feature-item span {
            color: #1a1a1a;
            font-size: 0.75rem;
            font-weight: 500;
            line-height: 1.2;
        }
        .service-cta {
            text-align: center;
        }
        .service-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #FF6B00;
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
            position: relative;
            overflow: hidden;
            margin-top: auto;
        }
        .service-btn:hover {
            background: #e55a00;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
        }
        .service-btn i {
            font-size: 0.85rem;
        }
        /* Desktop Footer Enhancements */
        @media (min-width: 1200px) {
            .footer {
                padding: 80px 0 40px;
            }
            .footer-content {
                margin-bottom: 60px;
                padding-bottom: 50px;
            }
            .footer-logo img {
                height: 45px;
            }
            .footer-logo-text h3 {
                font-size: 1.4rem;
            }
            .footer-logo-text p {
                font-size: 1rem;
            }
            .social-links {
                gap: 18px;
            }
            .social-links a {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
            .footer-sections {
                gap: 80px;
                margin-bottom: 60px;
            }
            .footer-section h4 {
                font-size: 1.5rem;
                margin-bottom: 30px;
                padding-bottom: 18px;
            }
            .footer-section h4::after {
                width: 70px;
                height: 4px;
            }
            .footer-section li {
                margin-bottom: 16px;
            }
            .footer-section a {
                font-size: 1.05rem;
            }
            .contact-info p {
                margin-bottom: 18px;
                font-size: 1.05rem;
            }
            .contact-info i {
                font-size: 1.2rem;
                width: 18px;
            }
            .footer-bottom-content {
                gap: 40px;
                padding: 0;
            }
            .footer-bottom-links {
                gap: 25px;
            }
            .footer-bottom-links a {
                font-size: 1rem;
            }
        }
        
        /* Tablet Styles */
        @media (min-width: 768px) {
            .services-section {
                padding: 50px 0;
            }
            /* FAQ Section Tablet */
            .faq-section {
                padding: 60px 0;
            }
            .faq-section .section-header {
                margin-bottom: 50px;
            }
            .faq-section .section-header h2 {
                font-size: 2.2rem;
            }
            .faq-section .section-header p {
                font-size: 1rem;
            }
            .faq-grid {
                max-width: 800px;
            }
            .faq-question {
                padding: 22px 25px;
            }
            .faq-question h3 {
                font-size: 1.1rem;
            }
            .faq-question i {
                width: 32px;
                height: 32px;
                font-size: 1.1rem;
            }
            .faq-item.active .faq-answer {
                padding: 0 25px 22px;
            }
            .faq-answer p {
                font-size: 0.95rem;
            }
            .services-container {
                grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
                gap: 18px;
            }
            .service-item {
                height: 300px;
            }
            .service-header {
                padding: 18px;
            }
            .service-icon-wrapper {
                width: 48px;
                height: 48px;
                font-size: 1.4rem;
            }
            .service-title h3 {
                font-size: 1.15rem;
            }
            .service-body {
                padding: 18px;
            }
            .service-body p {
                font-size: 0.9rem;
            }
            .service-btn {
                padding: 9px 18px;
                font-size: 0.8rem;
            }
            /* Contact Info Section Tablet */
            .contact-info-section {
                padding: 70px 0;
            }
            .contact-info-section .section-header {
                margin-bottom: 50px;
            }
            .contact-info-section .section-header h2 {
                font-size: 2.2rem;
            }
            .contact-info-section .section-header p {
                font-size: 1rem;
            }
            .contact-cards {
                gap: 25px;
                grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            }
            .contact-card {
                padding: 35px 25px;
            }
            .contact-icon {
                width: 65px;
                height: 65px;
                font-size: 1.6rem;
                margin-bottom: 20px;
            }
            .contact-card h3 {
                font-size: 1.3rem;
                margin-bottom: 12px;
            }
            .contact-card p {
                font-size: 1.1rem;
                margin-bottom: 6px;
            }
            .contact-card span {
                font-size: 0.9rem;
            }
            .services-section .section-header {
                margin-bottom: 60px;
            }
            .services-section .section-header h2 {
                font-size: 2.5rem;
            }
            .services-section .section-header p {
                font-size: 1.2rem;
            }
            .services-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
                margin-top: 50px;
            }
            .service-header {
                padding: 28px 24px 20px;
                gap: 18px;
            }
            .service-icon-wrapper {
                width: 65px;
                height: 65px;
                font-size: 1.8rem;
            }
            .service-title h3 {
                font-size: 1.4rem;
            }
            .service-body {
                padding: 24px;
            }
            .service-body p {
                font-size: 0.95rem;
                margin-bottom: 20px;
            }
            .service-features {
                gap: 2px;
                margin-bottom: 12px;
            }
            .feature-item {
                gap: 5px;
                padding: 1px 0;
            }
            .services-section .feature-item i,
            .service-features .feature-item i {
                width: 12px !important;
                height: 12px !important;
                font-size: 0.6rem !important;
                color: #FF6B00 !important;
                background: none !important;
                box-shadow: none !important;
            }
            .feature-item span {
                font-size: 0.7rem;
            }
            .service-btn {
                padding: 14px 28px;
                font-size: 0.95rem;
            }
        }
        /* Desktop Styles */
        @media (min-width: 1024px) {
            .services-section .section-header h2 {
                font-size: 3rem;
            }
            /* Pricing Section Desktop */
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
                max-width: 1200px;
            }
            .pricing-card {
                max-width: none;
            }
            .services-section .section-header p {
                font-size: 1.3rem;
            }
            .services-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 35px;
                margin-top: 60px;
            }
            .service-header {
                padding: 30px 26px 22px;
                gap: 20px;
            }
            .service-icon-wrapper {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }
            .service-title h3 {
                font-size: 1.5rem;
            }
            .service-body {
                padding: 26px;
            }
            .service-body p {
                font-size: 1rem;
                margin-bottom: 22px;
            }
            .service-features {
                gap: 2px;
                margin-bottom: 15px;
            }
            .feature-item {
                gap: 6px;
                padding: 2px 0;
            }
            .services-section .feature-item i,
            .service-features .feature-item i {
                width: 14px !important;
                height: 14px !important;
                font-size: 0.7rem !important;
                color: #FF6B00 !important;
                background: none !important;
                box-shadow: none !important;
            }
            .feature-item span {
                font-size: 0.75rem;
            }
            .service-btn {
                padding: 16px 32px;
                font-size: 1rem;
            }
        }
        /* Large Desktop Styles */
        @media (min-width: 1200px) {
            .services-section .section-header h2 {
                font-size: 3.5rem;
            }
            /* Pricing Section Large Desktop */
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 40px;
                max-width: 1400px;
            }
            .services-section .section-header p {
                font-size: 1.4rem;
            }
            .services-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
                margin-top: 70px;
            }
            .service-header {
                padding: 35px 30px 25px;
                gap: 22px;
            }
            .service-icon-wrapper {
                width: 80px;
                height: 80px;
                font-size: 2.2rem;
            }
            .service-title h3 {
                font-size: 1.7rem;
            }
            .service-body {
                padding: 30px;
            }
            .service-body p {
                font-size: 1.1rem;
                margin-bottom: 26px;
            }
            .service-features {
                gap: 3px;
                margin-bottom: 18px;
            }
            .feature-item {
                gap: 7px;
                padding: 2px 0;
            }
            .services-section .feature-item i,
            .service-features .feature-item i {
                width: 16px !important;
                height: 16px !important;
                font-size: 0.8rem !important;
                color: #FF6B00 !important;
                background: none !important;
                box-shadow: none !important;
            }
            .feature-item span {
                font-size: 0.8rem;
            }
            .service-btn {
                padding: 18px 36px;
                font-size: 1.1rem;
            }
        }
        /* Process Section */
        .process-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 100px 0;
            margin-top: 0;
            position: relative;
            overflow: hidden;
        }
        .process-section::before {
            content: '';
            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 100 100"><defs><pattern id="process-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23e2e8f0" opacity="0.4"/><circle cx="5" cy="5" r="0.5" fill="%23e2e8f0" opacity="0.2"/><circle cx="35" cy="15" r="0.5" fill="%23e2e8f0" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23process-pattern)"/></svg>');
            opacity: 0.3;
            z-index: 0;
        }
        .process-section .section-header {
            position: relative;
            z-index: 1;
            text-align: center;
            margin-bottom: 80px;
        }
        .process-section .section-header h2 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }
        .process-section .section-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 800px;
            margin: 0 auto;
        }
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 60px;
            position: relative;
            z-index: 1;
        }
        .process-step {
            flex: 1 1 300px;
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        .process-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: var(--primary);
        }
        .step-number {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            font-weight: 800;
            color: rgba(37, 99, 235, 0.1);
            z-index: 0;
        }
        .step-features {
            margin-top: 20px;
        }
        .step-features ul {
            list-style: none;
        }
        .step-features ul li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
        }
        .step-features ul li::before {
            content: '\f105';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 8px;
            color: var(--primary);
        }
        /* Pricing Section */
        .pricing-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 100px 0;
            margin-top: 0;
            position: relative;
            overflow: hidden;
        }
        .pricing-section::before {
            content: '';
            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 100 100"><defs><pattern id="pricing-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23pricing-dots)"/></svg>');
            opacity: 0.4;
            z-index: 0;
        }
        .pricing-section .section-header {
            position: relative;
            z-index: 1;
            text-align: center;
            margin-bottom: 80px;
        }
        .pricing-section .section-header h2 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            position: relative;
        }
        .pricing-section .section-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 800px;
            margin: 0 auto;
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            position: relative;
            z-index: 1;
            margin-top: 60px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        .pricing-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 2px solid rgba(37, 99, 235, 0.1);
            transform: translateY(0);
            width: 100%;
            text-align: center;
        }
        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            border-color: rgba(37, 99, 235, 0.2);
        }
        .pricing-card.featured {
            border: 2px solid var(--primary);
            transform: scale(1.05);
            z-index: 2;
            box-shadow: 0 15px 50px rgba(37, 99, 235, 0.2);
        }
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-8px);
            box-shadow: 0 25px 70px rgba(37, 99, 235, 0.25);
        }
        .pricing-card.featured .pricing-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--primary);
            color: white;
            padding: 8px 40px;
            font-weight: 600;
            transform: rotate(45deg);
            font-size: 14px;
        }
        .pricing-header {
            padding: 30px;
            text-align: center;
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
            width: 100%;
        }
        .pricing-header h3 {
            font-size: 1.5rem;
            color: var(--dark);
        }
        .price {
            margin: 15px 0;
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }
        .currency {
            font-size: 1.5rem;
            margin-top: 8px;
        }
        .amount {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1;
            margin: 0 5px;
        }
        .period {
            font-size: 1rem;
            color: var(--gray);
            margin-top: 18px;
        }
        .pricing-features {
            padding: 30px;
            width: 100%;
        }
        .pricing-features h4 {
            text-align: center;
            color: var(--primary);
            margin-bottom: 20px;
        }
        .pricing-features ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .pricing-features ul li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        .pricing-features ul li i {
            color: var(--success);
            margin-right: 10px;
        }
        .pricing-card .cta-button {
            display: block;
            margin: 0 auto 30px;
            text-align: center;
            width: fit-content;
        }
        /* Contact Form */
        .contact-form-section {
            background: white;
            padding: 80px 0;
        }
        .contact-form-section .section-header h2,
        .contact-form-section .section-header p {
            color: var(--dark);
        }
        .form-container {
            max-width: 700px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            padding: 40px;
            border: 1px solid var(--light-gray);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        .form-row {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .form-group {
            flex: 1 1 300px;
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px;
            border-radius: 8px;
            border: 2px solid var(--light-gray);
            background: white;
            color: var(--dark);
            font-size: 16px;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--gray);
        }
        .submit-btn {
            background: #FF6B00;
            color: white;
            width: 100%;
            padding: 16px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .submit-btn:hover {
            background: #e55a00;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
        }
        /* Why Choose Us */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .feature-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
        }
        /* Leading Company Section */
        .leading-company-section {
            background: white;
            padding: 40px 0;
        }
        .leading-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        .leading-content h3 {
            font-size: 1.4rem;
            color: #1a1a1a;
            margin-bottom: 20px;
            font-weight: 600;
            line-height: 1.3;
        }
        .leading-content p {
            font-size: 0.85rem;
            line-height: 1.6;
            color: #666666;
            margin-bottom: 15px;
            text-align: left;
        }
        .leading-content p:last-child {
            margin-bottom: 0;
        }

        /* FAQ */
        .faq-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .faq-section::before {
            content: '';
            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 100 100"><defs><pattern id="faq-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.8" fill="%23e2e8f0" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-dots)"/></svg>');
            opacity: 0.3;
            z-index: 0;
        }
        .faq-section .section-header {
            position: relative;
            z-index: 1;
            text-align: center;
            margin-bottom: 60px;
        }
        .faq-section .section-header h2 {
            font-size: 2.5rem;
            color: #1a1a1a;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        .faq-section .section-header p {
            font-size: 1.1rem;
            color: #666666;
            max-width: 600px;
            margin: 0 auto;
        }
        .faq-grid {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .faq-item {
            background: white;
            border-radius: 16px;
            margin-bottom: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }
        .faq-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: #FF6B00;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .faq-item:hover::before,
        .faq-item.active::before {
            transform: scaleX(1);
        }
        .faq-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(255, 107, 0, 0.15);
            border-color: rgba(255, 107, 0, 0.2);
        }
        .faq-item.active {
            border-color: #FF6B00;
            box-shadow: 0 12px 40px rgba(255, 107, 0, 0.2);
        }
        .faq-question {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }
        .faq-question:hover {
            background: rgba(255, 107, 0, 0.05);
        }
        .faq-question h3 {
            font-size: 1.15rem;
            margin: 0;
            color: #1a1a1a;
            font-weight: 600;
            line-height: 1.4;
            padding-right: 20px;
        }
        .faq-question i {
            color: #FF6B00;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            background: rgba(255, 107, 0, 0.1);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
            background: #FF6B00;
            color: white;
        }
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: rgba(255, 107, 0, 0.02);
        }
        .faq-item.active .faq-answer {
            padding: 0 30px 25px;
            max-height: 300px;
        }
        .faq-answer p {
            font-size: 1rem;
            line-height: 1.7;
            color: #666666;
            margin: 0;
            padding-top: 0;
        }
        /* People Also Search Section */
        .people-search-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 80px 0;
        }
        .people-search-section .section-header h2 {
            color: var(--dark);
        }
        .people-search-section .section-header p {
            color: var(--gray);
        }
        .search-keywords-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .keyword-category {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .keyword-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
            transform: scaleX(0);
            transition: transform 0.25s ease;
        }
        .keyword-category:hover::before {
            transform: scaleX(1);
        }
        .keyword-category:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        .keyword-category h3 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--light-gray);
            color: var(--dark);
            position: relative;
        }
        .keyword-category h3::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
        }
        .keyword-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .keyword-links a {
            display: block;
            padding: 12px 16px;
            border-radius: 10px;
            transition: all 0.3s ease;
            color: var(--gray);
            position: relative;
            padding-left: 35px;
            font-weight: 500;
            border: 1px solid transparent;
        }
        .keyword-links a::before {
            content: '\f105';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 12px;
            top: 12px;
            color: var(--primary);
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .keyword-links a:hover {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
            color: var(--primary);
            padding-left: 40px;
            border-color: rgba(37, 99, 235, 0.1);
            transform: translateX(5px);
        }
        .keyword-links a:hover::before {
            color: var(--secondary);
            transform: translateX(3px);
        }
        /* Contact Cards */
        .contact-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .contact-card {
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
        }
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            border-color: var(--primary);
        }
        .contact-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 1.8rem;
            color: white;
            transition: all 0.3s ease;
        }
        .contact-card:hover .contact-icon {
            transform: scale(1.1);
        }
        .contact-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark);
            font-weight: 600;
        }
        .contact-card p {
            font-size: 1.2rem;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        .contact-card span {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.5;
            display: block;
        }
        .contact-card a {
            color: var(--dark);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .contact-card a:hover {
            color: var(--primary);
        }
        /* Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .stat-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: var(--gray);
        }
        /* City Focus Section */
        .city-focus-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        .city-focus-section::before {
            content: '';
            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 100 100"><defs><pattern id="city-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.2"/><circle cx="75" cy="75" r="1" fill="%23e2e8f0" opacity="0.2"/><circle cx="50" cy="10" r="0.5" fill="%23e2e8f0" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23e2e8f0" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23e2e8f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23city-grain)"/></svg>');
            opacity: 0.3;
            z-index: 0;
        }
        .city-focus-section .section-header {
            position: relative;
            z-index: 1;
        }
        .city-focus-section .section-header h2 {
            color: var(--dark);
        }
        .city-focus-section .section-header p {
            color: var(--gray);
        }
        .city-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            margin-top: 60px;
            position: relative;
            z-index: 1;
        }
        .city-text {
            background: white;
            padding: 50px;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }
        .city-text::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
        }
        .city-text h3 {
            font-size: 2.2rem;
            color: var(--dark);
            margin-bottom: 2rem;
            position: relative;
            line-height: 1.3;
        }
        .city-text h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 2px;
        }
        .city-text p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--gray);
            margin-bottom: 1.8rem;
        }
        .city-text p:last-child {
            margin-bottom: 0;
        }
        .city-features {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .city-feature {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            padding: 30px;
            background: white;
            border-radius: 20px;
            border: 1px solid rgba(37, 99, 235, 0.1);
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
        }
        .city-feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
            transform: scaleX(0);
            transition: transform 0.25s ease;
        }
        .city-feature:hover::before {
            transform: scaleX(1);
        }
        .city-feature:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
            border-color: rgba(37, 99, 235, 0.2);
        }
        .city-feature i {
            font-size: 2rem;
            color: white;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            width: 65px;
            height: 65px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
            position: relative;
            overflow: hidden;
        }
        .city-feature i::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: rotate(45deg) translateX(-100%);
            transition: transform 0.25s ease;
        }
        .city-feature:hover i::after {
            transform: rotate(45deg) translateX(100%);
        }
        .city-feature-content {
            flex: 1;
        }
        .city-feature-content h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.8rem;
            line-height: 1.3;
        }
        .city-feature-content p {
            color: var(--gray);
            line-height: 1.6;
            margin: 0;
            font-size: 1rem;
        }
        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            color: white;
            padding: 60px 0 30px;
            position: relative;
            overflow: hidden;
        }
        .footer::before {
            content: '';
            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 100 100"><defs><pattern id="footer-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23334155" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-dots)"/></svg>');
            opacity: 0.4;
            z-index: 0;
        }
        .footer .container {
            position: relative;
            z-index: 1;
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
        }
        .about-section::before {
            content: '';
            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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23e2e8f0" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23e2e8f0" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23e2e8f0" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.4;
            z-index: 0;
        }
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            position: relative;
            z-index: 1;
        }
        .about-text {
            background: white;
            padding: 50px;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }
        .about-text::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
        }
        .about-text h2 {
            font-size: 2.8rem;
            margin-bottom: 2.5rem;
            color: var(--dark);
            position: relative;
            line-height: 1.2;
        }
        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 2px;
        }
        .about-text p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--gray);
            margin-bottom: 1.8rem;
            position: relative;
        }
        .about-text p:last-child {
            margin-bottom: 0;
        }
        .about-features {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            padding: 30px;
            background: white;
            border-radius: 20px;
            border: 1px solid rgba(37, 99, 235, 0.1);
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
        }
        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
           transform: scaleX(0);
            transition: transform 0.25s ease;
        }
        .feature-item:hover::before {
            transform: scaleX(1);
        }
        .feature-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
            border-color: rgba(37, 99, 235, 0.2);
        }
        .feature-item i {
            font-size: 2.2rem;
            color: white;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            width: 70px;
            height: 70px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
            position: relative;
            overflow: hidden;
        }
        .feature-item i::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: rotate(45deg) translateX(-100%);
            transition: transform 0.25s ease;
        }
        .feature-item:hover i::after {
            transform: rotate(45deg) translateX(100%);
        }
        .feature-content span {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.8rem;
            display: block;
            line-height: 1.3;
        }
        .feature-content p {
            color: var(--gray);
            line-height: 1.7;
            margin: 0;
            font-size: 1rem;
        }

        /* Why Choose Us Section */
        .why-choose-us {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 80px 0;
        }

        /* Contact Info Section */
        .contact-info-section {
            background: #f8fafc;
            padding: 80px 0;
            position: relative;
        }
        .contact-info-section .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .contact-info-section .section-header h2 {
            color: var(--dark);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        .contact-info-section .section-header p {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            color: white;
            padding: 80px 0;
        }
        .stats-section .section-header h2,
        .stats-section .section-header p {
            color: white;
        }

        /* Confirmation Dialog */
        .confirmation-dialog {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .confirmation-dialog.show {
            opacity: 1;
            visibility: visible;
        }
        .dialog-content {
            background: white;
            border-radius: 16px;
            padding: 0;
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            transform: scale(0.7);
            transition: transform 0.3s ease;
        }
        .confirmation-dialog.show .dialog-content {
            transform: scale(1);
        }
        .dialog-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 25px 30px;
            border-radius: 16px 16px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .dialog-header h3 {
            margin: 0;
            color: white;
        }
        .close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        .close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .dialog-body {
            padding: 30px;
            text-align: center;
        }
        .success-icon {
            font-size: 4rem;
            color: var(--success);
            margin-bottom: 20px;
        }
        .dialog-body p {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 15px;
            line-height: 1.6;
        }
        .dialog-footer {
            padding: 0 30px 30px;
            text-align: center;
        }
        .dialog-footer .btn {
            padding: 12px 30px;
            font-size: 1.1rem;
        }

        /* CTA Button */
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
            color: white;
            padding: 15px 30px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
            color: white;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 50px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .footer-logo img {
            height: 40px;
            width: auto;
        }
        .footer-logo-text h3 {
            color: white;
            font-size: 1.2rem;
            margin: 0;
        }
        .footer-logo-text p {
            color: #cbd5e1;
            font-size: 0.9rem;
            margin: 0;
        }
        .social-links {
            display: flex;
            gap: 15px;
        }
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-2px);
        }
        .footer-sections {
            display: grid;
            grid-template-columns: 1fr 1fr 1.2fr;
            gap: 60px;
            margin-bottom: 50px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 15px;
            font-weight: 600;
        }
        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 2px;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section li {
            margin-bottom: 14px;
        }
        .footer-section a {
            color: #cbd5e1;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 1rem;
            line-height: 1.6;
            display: inline-block;
        }
        .footer-section a:hover {
            color: white;
            padding-left: 8px;
            transform: translateX(3px);
        }
        .contact-info p {
            margin-bottom: 16px;
            color: #cbd5e1;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 1rem;
            line-height: 1.6;
        }
        .contact-info i {
            color: var(--primary);
            margin-top: 4px;
            flex-shrink: 0;
            font-size: 1.1rem;
            width: 16px;
        }
        .contact-info a {
            color: #cbd5e1;
            text-decoration: none;
        }
        .contact-info a:hover {
            color: white;
        }
        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }
        .footer-bottom-links a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .footer-bottom-links a:hover {
            color: white;
        }
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #cbd5e1;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
            font-size: 0.9rem;
        }
        /* Navbar Styles */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 0.5rem 0;
        }
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 10px;
        }
        .logo img {
            height: 32px;
            width: auto;
        }
        .logo-text {
            display: flex;
            flex-direction: column;
            margin-left: 8px;
        }
        .company-name {
            color: #000000;
            font-size: 1.1rem;
            font-weight: 600;
            line-height: 1.2;
        }
        .website-title {
            color: #FF6B00;
            font-size: 0.85rem;
            font-weight: 400;
            line-height: 1.2;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-menu a {
            color: #333333;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-menu a:hover {
            color: #FF6B00;
        }
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
            background: none;
            border: none;
            padding: 0;
        }
        .nav-toggle span {
            width: 30px;
            height: 3px;
            background: #000000;
            transition: all 0.3s ease;
            display: block;
        }
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }
            .section {
                padding: 60px 0;
            }
            .section-header h2 {
                font-size: 2rem;
            }
            /* About Section Tablet */
            .about-section {
                padding: 80px 0;
            }
            .about-content {
                gap: 60px;
            }
            .about-text {
                padding: 40px;
            }
            .about-text h2 {
                font-size: 2.5rem;
            }
            .about-text p {
                font-size: 1.1rem;
            }
            .feature-item {
                padding: 28px;
                gap: 22px;
            }
            .feature-item i {
                width: 65px;
                height: 65px;
                font-size: 2rem;
            }
            .feature-content span {
                font-size: 1.25rem;
            }
            /* Pricing Section Tablet */
            .pricing-section {
                padding: 80px 0;
            }
            .pricing-section .section-header {
                margin-bottom: 60px;
            }
            .pricing-section .section-header h2 {
                font-size: 2.5rem;
            }
            .pricing-section .section-header p {
                font-size: 1.1rem;
            }
            .pricing-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                justify-items: center;
                gap: 25px;
                margin-top: 50px;
                max-width: 900px;
            }
            .pricing-card {
                width: 100%;
                max-width: 350px;
            }
            .pricing-header h3,
            .pricing-features h4 {
                text-align: center;
            }
            .pricing-features ul {
                text-align: center;
            }
            .pricing-features ul li {
                justify-content: center;
            }
            /* Process Section Tablet */
            .process-section {
                padding: 80px 0;
            }
            .process-section .section-header {
                margin-bottom: 60px;
            }
            .process-section .section-header h2 {
                font-size: 2.5rem;
            }
            .process-section .section-header p {
                font-size: 1.1rem;
            }
            .process-steps {
                gap: 28px;
                margin-top: 50px;
            }
            .process-step {
                padding: 28px 25px;
            }
            .step-number {
                font-size: 2.9rem;
            }
            /* City Focus Section Tablet */
            .city-focus-section {
                padding: 80px 0;
            }
            .city-content {
                gap: 60px;
                margin-top: 50px;
            }
            .city-text {
                padding: 40px;
            }
            .city-text h3 {
                font-size: 2rem;
                margin-bottom: 1.8rem;
            }
            .city-text p {
                font-size: 1.1rem;
                margin-bottom: 1.6rem;
            }
            .city-features {
                gap: 22px;
            }
            .city-feature {
                padding: 25px;
                gap: 20px;
            }
            .city-feature i {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
            }
            .city-feature-content h4 {
                font-size: 1.2rem;
                margin-bottom: 0.7rem;
            }
            .city-feature-content p {
                font-size: 0.95rem;
            }
            /* People Search Section Tablet */
            .people-search-section {
                padding: 60px 0;
            }
            .search-keywords-grid {
                gap: 25px;
                margin-top: 35px;
            }
            .keyword-category {
                padding: 25px;
            }
            .keyword-category h3 {
                font-size: 1.3rem;
                margin-bottom: 20px;
            }
            .keyword-links a {
                padding: 10px 14px;
                padding-left: 32px;
            }
            .keyword-links a::before {
                left: 10px;
                top: 10px;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: flex;
            }
            
            /* Leading Company Section Mobile */
            .leading-company-section {
                padding: 30px 0;
            }
            .leading-content {
                max-width: 100%;
                padding: 0 20px;
            }
            .leading-content h3 {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }
            .leading-content p {
                font-size: 0.8rem;
                line-height: 1.5;
                margin-bottom: 12px;
            }
            
            /* FAQ Section Mobile */
            .faq-section {
                padding: 50px 0;
            }
            .faq-section .section-header {
                margin-bottom: 40px;
                padding: 0 20px;
            }
            .faq-section .section-header h2 {
                font-size: 2rem;
            }
            .faq-section .section-header p {
                font-size: 0.95rem;
            }
            .faq-grid {
                max-width: 100%;
                padding: 0 20px;
            }
            .faq-item {
                margin-bottom: 15px;
                border-radius: 12px;
            }
            .faq-question {
                padding: 18px 20px;
            }
            .faq-question h3 {
                font-size: 1rem;
                line-height: 1.3;
                padding-right: 15px;
            }
            .faq-question i {
                width: 30px;
                height: 30px;
                font-size: 1rem;
            }
            .faq-item.active .faq-answer {
                padding: 0 20px 18px;
            }
            .faq-answer p {
                font-size: 0.9rem;
                line-height: 1.6;
            }
            
            /* Footer Mobile Styles */
            .footer-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            .footer-sections {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .footer-section {
                text-align: center;
            }
            .contact-info p {
                justify-content: center;
                text-align: left;
            }
            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            .footer-bottom-links {
                justify-content: center;
            }
            
            /* Services Section Mobile */
            .services-section {
                padding: 40px 0;
            }
            .services-section .section-header {
                margin-bottom: 30px;
            }
            .services-section .section-header h2 {
                font-size: 2rem;
            }
            .services-container {
                grid-template-columns: 1fr;
                gap: 15px;
                margin-top: 30px;
            }
            .service-item {
                height: auto;
                min-height: 280px;
            }
            .service-header {
                padding: 15px;
            }
            .service-icon-wrapper {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
            .service-title h3 {
                font-size: 1.1rem;
            }
            .service-body {
                padding: 15px;
            }
            .service-body p {
                font-size: 0.85rem;
            }
            .feature-item span {
                font-size: 0.8rem;
            }
            .service-btn {
                padding: 8px 16px;
                font-size: 0.8rem;
            }
            /* Contact Info Section Mobile */
            .contact-info-section {
                padding: 60px 0;
            }
            .contact-info-section .section-header {
                margin-bottom: 40px;
            }
            .contact-info-section .section-header h2 {
                font-size: 2rem;
            }
            .contact-info-section .section-header p {
                font-size: 1rem;
            }
            .contact-cards {
                grid-template-columns: 1fr;
                gap: 20px;
                max-width: 400px;
                margin: 0 auto;
            }
            .contact-card {
                padding: 30px 25px;
            }
            .contact-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
                margin-bottom: 18px;
            }
            .contact-card h3 {
                font-size: 1.2rem;
                margin-bottom: 10px;
            }
            .contact-card p {
                font-size: 1.1rem;
                margin-bottom: 5px;
            }
            .contact-card span {
                font-size: 0.85rem;
            }
            .services-section .section-header {
                margin-bottom: 50px;
            }
            .services-section .section-header h2 {
                font-size: 2rem;
            }
            .services-section .section-header p {
                font-size: 1.1rem;
            }
            .services-container {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-top: 40px;
            }
            .service-header {
                padding: 24px 20px 18px;
                gap: 16px;
            }
            .service-icon-wrapper {
                width: 60px;
                height: 60px;
                font-size: 1.6rem;
            }
            .service-title h3 {
                font-size: 1.3rem;
            }
            .service-body {
                padding: 20px;
            }
            .service-body p {
                font-size: 0.9rem;
                margin-bottom: 18px;
            }
            .service-features {
                gap: 1px;
                margin-bottom: 10px;
            }
            .feature-item {
                gap: 4px;
                padding: 1px 0;
            }
            .services-section .feature-item i,
            .service-features .feature-item i {
                width: 10px !important;
                height: 10px !important;
                font-size: 0.55rem !important;
                color: #FF6B00 !important;
                background: none !important;
                box-shadow: none !important;
            }
            .feature-item span {
                font-size: 0.65rem;
            }
            .service-btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
            
            /* About Section Mobile */
            .about-section {
                padding: 80px 0;
            }
            .about-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .about-text {
                padding: 35px;
            }
            .about-text h2 {
                font-size: 2.2rem;
            }
            .about-text p {
                font-size: 1.05rem;
            }
            .feature-item {
                padding: 25px;
                gap: 20px;
            }
            .feature-item i {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
            }
            .feature-content span {
                font-size: 1.2rem;
            }
            .nav-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: white;
                flex-direction: column;
                align-items: center;
                padding: 0;
                transition: all 0.3s ease;
                gap: 1.5rem;
                z-index: 1000;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                padding-top: 70px;
            }
            .nav-menu.active {
                left: 0;
            }
            .nav-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(8px, 8px);
            }
            .nav-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            .nav-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }
            .hero {
                padding: 100px 0 60px;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 100%;
                max-width: 300px;
            }
            .section-header h2 {
                font-size: 1.8rem;
            }
            .pricing-card.featured {
                transform: scale(1);
            }
            /* Pricing Section Mobile */
            .pricing-section {
                padding: 60px 0;
            }
            .pricing-section .section-header {
                margin-bottom: 50px;
            }
            .pricing-section .section-header h2 {
                font-size: 2rem;
            }
            .pricing-section .section-header p {
                font-size: 1rem;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
                justify-items: center;
                gap: 20px;
                max-width: 500px;
                margin: 40px auto 0;
            }
            .pricing-card {
                max-width: 100%;
                width: 100%;
            }
            .pricing-header h3,
            .pricing-features h4 {
                text-align: center;
            }
            .pricing-features ul {
                text-align: center;
            }
            .pricing-features ul li {
                justify-content: center;
            }
            .pricing-header {
                padding: 28px 25px;
            }
            .pricing-header h3 {
                font-size: 1.4rem;
            }
            .amount {
                font-size: 2.8rem;
            }
            .pricing-features {
                padding: 28px 25px;
            }
            /* Process Section Mobile */
            .process-section {
                padding: 60px 0;
            }
            .process-section .section-header {
                margin-bottom: 50px;
            }
            .process-section .section-header h2 {
                font-size: 2rem;
            }
            .process-section .section-header p {
                font-size: 1rem;
            }
            .process-steps {
                gap: 25px;
                margin-top: 40px;
            }
            .process-step {
                padding: 25px 22px;
            }
            .step-number {
                font-size: 2.8rem;
                top: 18px;
                right: 18px;
            }
            .step-features ul li {
                padding: 7px 0;
                padding-left: 22px;
                font-size: 0.95rem;
            }
            /* City Focus Section Mobile */
            .city-focus-section {
                padding: 70px 0;
            }
            .city-content {
                grid-template-columns: 1fr;
                gap: 40px;
                margin-top: 45px;
            }
            .city-text {
                padding: 35px;
            }
            .city-text h3 {
                font-size: 1.8rem;
                margin-bottom: 1.5rem;
            }
            .city-text p {
                font-size: 1.05rem;
                margin-bottom: 1.5rem;
            }
            .city-features {
                gap: 20px;
            }
            .city-feature {
                padding: 22px;
                gap: 18px;
            }
            .city-feature i {
                width: 55px;
                height: 55px;
                font-size: 1.6rem;
            }
            .city-feature-content h4 {
                font-size: 1.15rem;
                margin-bottom: 0.6rem;
            }
            .city-feature-content p {
                font-size: 0.9rem;
            }
            /* People Search Section Mobile */
            .people-search-section {
                padding: 60px 0;
            }
            .search-keywords-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-top: 30px;
            }
            .keyword-category {
                padding: 20px;
            }
            .keyword-category h3 {
                font-size: 1.2rem;
                margin-bottom: 18px;
            }
            .keyword-links a {
                padding: 10px 12px;
                padding-left: 30px;
                font-size: 0.95rem;
            }
            .keyword-links a::before {
                left: 8px;
                top: 10px;
                font-size: 0.8rem;
            }
        }
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            /* Leading Company Section Extra Small Mobile */
            .leading-company-section {
                padding: 25px 0;
            }
            .leading-content {
                padding: 0 15px;
            }
            .leading-content h3 {
                font-size: 1.1rem;
                margin-bottom: 12px;
                line-height: 1.2;
            }
            .leading-content p {
                font-size: 0.75rem;
                line-height: 1.4;
                margin-bottom: 10px;
            }
            
            /* FAQ Section Extra Small Mobile */
            .faq-section {
                padding: 40px 0;
            }
            .faq-section .section-header {
                margin-bottom: 35px;
                padding: 0 15px;
            }
            .faq-section .section-header h2 {
                font-size: 1.8rem;
            }
            .faq-section .section-header p {
                font-size: 0.9rem;
            }
            .faq-grid {
                padding: 0 15px;
            }
            .faq-item {
                margin-bottom: 12px;
                border-radius: 10px;
            }
            .faq-question {
                padding: 15px 18px;
            }
            .faq-question h3 {
                font-size: 0.95rem;
                line-height: 1.2;
                padding-right: 12px;
            }
            .faq-question i {
                width: 28px;
                height: 28px;
                font-size: 0.9rem;
            }
            .faq-item.active .faq-answer {
                padding: 0 18px 15px;
            }
            .faq-answer p {
                font-size: 0.85rem;
                line-height: 1.5;
            }
            
            /* Services Section Extra Small Mobile */
            .services-section {
                padding: 30px 0;
            }
            .services-section .section-header {
                margin-bottom: 25px;
            }
            .services-section .section-header h2 {
                font-size: 1.8rem;
            }
            .services-container {
                gap: 12px;
                margin-top: 25px;
            }
            .service-item {
                min-height: 260px;
            }
            .service-header {
                padding: 12px;
            }
            .service-icon-wrapper {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            .service-title h3 {
                font-size: 1rem;
            }
            .service-body {
                padding: 12px;
            }
            .service-body p {
                font-size: 0.8rem;
            }
            .feature-item span {
                font-size: 0.75rem;
            }
            .service-btn {
                padding: 6px 14px;
                font-size: 0.75rem;
            }
            /* Contact Info Section Extra Small Mobile */
            .contact-info-section {
                padding: 50px 0;
            }
            .contact-info-section .section-header {
                margin-bottom: 35px;
            }
            .contact-info-section .section-header h2 {
                font-size: 1.8rem;
            }
            .contact-info-section .section-header p {
                font-size: 0.95rem;
            }
            .contact-cards {
                gap: 18px;
                max-width: 320px;
            }
            .contact-card {
                padding: 25px 20px;
            }
            .contact-icon {
                width: 55px;
                height: 55px;
                font-size: 1.3rem;
                margin-bottom: 15px;
            }
            .contact-card h3 {
                font-size: 1.1rem;
                margin-bottom: 8px;
            }
            .contact-card p {
                font-size: 1rem;
                margin-bottom: 4px;
            }
            .contact-card span {
                font-size: 0.8rem;
            }
            .services-section .section-header {
                margin-bottom: 40px;
            }
            .services-section .section-header h2 {
                font-size: 1.8rem;
            }
            .services-section .section-header p {
                font-size: 1rem;
            }
            .services-container {
                gap: 18px;
                margin-top: 35px;
            }
            .service-header {
                padding: 20px 18px 16px;
                gap: 14px;
            }
            .service-icon-wrapper {
                width: 45px;
                height: 45px;
                font-size: 1.4rem;
            }
            .service-title h3 {
                font-size: 1.2rem;
            }
            .service-body {
                padding: 18px;
            }
            .service-body p {
                font-size: 0.85rem;
                margin-bottom: 16px;
            }
            .service-features {
                gap: 1px;
                margin-bottom: 8px;
            }
            .feature-item {
                gap: 3px;
                padding: 1px 0;
            }
            .services-section .feature-item i,
            .service-features .feature-item i {
                width: 8px !important;
                height: 8px !important;
                font-size: 0.5rem !important;
                color: #FF6B00 !important;
                background: none !important;
                box-shadow: none !important;
            }
            .feature-item span {
                font-size: 0.6rem;
            }
            .service-btn {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
            
            /* About Section Extra Small Mobile */
            .about-section {
                padding: 60px 0;
            }
            .about-text {
                padding: 25px;
            }
            .about-text h2 {
                font-size: 1.9rem;
            }
            .about-text p {
                font-size: 1rem;
            }
            .feature-item {
                padding: 20px;
                gap: 15px;
            }
            .feature-item i {
                width: 55px;
                height: 55px;
                font-size: 1.6rem;
            }
            .feature-content span {
                font-size: 1.1rem;
            }
            .section-header h2 {
                font-size: 1.6rem;
            }
            .marquee-content span {
                font-size: 14px;
            }
            /* City Focus Section Extra Small Mobile */
            .city-focus-section {
                padding: 60px 0;
            }
            .city-content {
                gap: 35px;
                margin-top: 40px;
            }
            .city-text {
                padding: 25px;
            }
            .city-text h3 {
                font-size: 1.6rem;
                margin-bottom: 1.3rem;
            }
            .city-text p {
                font-size: 1rem;
                margin-bottom: 1.3rem;
            }
            .city-features {
                gap: 18px;
            }
            .city-feature {
                padding: 20px;
                gap: 15px;
            }
            .city-feature i {
                width: 50px;
                height: 50px;
                font-size: 1.4rem;
            }
            .city-feature-content h4 {
                font-size: 1.1rem;
                margin-bottom: 0.5rem;
            }
            .city-feature-content p {
                font-size: 0.85rem;
            }
            /* People Search Section Extra Small Mobile */
            .people-search-section {
                padding: 50px 0;
            }
            .search-keywords-grid {
                gap: 18px;
                margin-top: 25px;
            }
            .keyword-category {
                padding: 18px;
            }
            .keyword-category h3 {
                font-size: 1.1rem;
                margin-bottom: 15px;
            }
            .keyword-links a {
                padding: 8px 10px;
                padding-left: 28px;
                font-size: 0.9rem;
            }
            .keyword-links a::before {
                left: 6px;
                top: 8px;
                font-size: 0.75rem;
            }
            /* Pricing Section Extra Small Mobile */
            .pricing-section {
                padding: 50px 0;
            }
            .pricing-section .section-header {
                margin-bottom: 40px;
            }
            .pricing-section .section-header h2 {
                font-size: 1.8rem;
            }
            .pricing-section .section-header p {
                font-size: 0.95rem;
            }
            .pricing-grid {
                gap: 15px;
                max-width: 400px;
                margin: 35px auto 0;
            }
            .pricing-header {
                padding: 25px 20px;
            }
            .pricing-header h3 {
                font-size: 1.3rem;
            }
            .amount {
                font-size: 2.5rem;
            }
            .pricing-features {
                padding: 25px 20px;
            }
            /* Process Section Extra Small Mobile */
            .process-section {
                padding: 50px 0;
            }
            .process-section .section-header {
                margin-bottom: 40px;
            }
            .process-section .section-header h2 {
                font-size: 1.8rem;
            }
            .process-section .section-header p {
                font-size: 0.95rem;
            }
            .process-steps {
                gap: 20px;
                margin-top: 35px;
            }
            .process-step {
                padding: 20px 18px;
            }
            .step-number {
                font-size: 2.5rem;
                top: 15px;
                right: 15px;
            }
            .step-features ul li {
                padding: 6px 0;
                padding-left: 20px;
                font-size: 0.9rem;
            }

        }
    