        body {
            font-family: 'Inter', sans-serif;
            background: #0f172a;
            color: #1e293b;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .landing-hero {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            color: #fff;
            padding: 460px 20px 40px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            background-size: cover;
            background-position: center;
            opacity: 1.2;
            pointer-events: none;
            transition: opacity 0.4s;
        }

        .landing-hero>*:not(.hero-bg-image) {
            position: relative;
            z-index: 1;
        }

        .landing-hero .logo {
            width: 90px;
            margin-bottom: 18px;
            animation: fadeInDown 1s;
        }

        .landing-hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            margin-bottom: 18px;
            color: #2563eb;
            letter-spacing: -2px;
            animation: fadeInDown 1.2s;
        }

        .landing-hero p {
            font-size: 1.35rem;
            color: #cbd5e1;
            margin-bottom: 32px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeIn 1.4s;
        }

        .landing-btns {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            animation: fadeInUp 1.6s;
        }

        .landing-btn {
            background: #18bb51;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 15px 36px;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            box-shadow: 0 4px 16px rgba(37, 99, 235, 0.10);
            text-decoration: none;
            display: inline-block;
        }

        .landing-btn:hover {
            background: #102a71;
            color: rgb(81, 255, 28);
            box-shadow: 0 6px 20px rgb(255, 255, 255);
            transform: translateY(-2px) scale(1.04);
        }

        .features-section {
            background: #fff;
            color: #1e293b;
            padding: 60px 20px 40px 20px;
            text-align: center;
            position: relative;
        }

        .features-section h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: #2563eb;
            margin-bottom: 36px;
            letter-spacing: -1px;
        }

        .features-list {
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 28px;
            max-width: 1400px;
            margin: 0 auto;
            animation: fadeInUp 1.2s;
        }

        .feature-card {
            background: #f1f5f9;
            border-radius: 16px;
            box-shadow: 0 2px 16px rgba(37, 99, 235, 0.07);
            padding: 36px 24px 28px 24px;
            width: 240px;
            min-width: 200px;
            text-align: left;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            position: relative;
            transition: transform 0.25s, box-shadow 0.25s;
            animation: fadeInUp 1.2s;
        }

        .feature-card:hover {
            transform: translateY(-8px) scale(1.04);
            box-shadow: 0 8px 32px rgba(37, 99, 235, 0.13);
        }

        .feature-card i {
            font-size: 2.2rem;
            color: #2563eb;
            margin-bottom: 14px;
        }

        .feature-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .feature-card p {
            font-size: 1rem;
            color: #64748b;
        }

        .feature-img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
            background: #e0e7ef;
        }

        .business-gallery {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin: 60px auto 30px auto;
            max-width: 1200px;
            animation: fadeIn 1.8s;
        }

        .business-gallery img {
            width: 280px;
            height: 200px;
            object-fit: fill;
            border-radius: 2px;
            box-shadow: 0 4px 18px rgba(37, 99, 235, 0.10);
            transition: transform 0.25s, box-shadow 0.25s;
        }

        .business-gallery img:hover {
            transform: scale(1.05) translateY(-6px);
            box-shadow: 0 8px 32px rgba(37, 99, 235, 0.18);
        }

        .info-section {
            background: #f8fafc;
            color: #1e293b;
            padding: 60px 20px 40px 20px;
            text-align: center;
        }

        .info-section h2 {
            font-size: 2rem;
            color: #2563eb;
            margin-bottom: 18px;
        }

        .info-section p {
            font-size: 1.15rem;
            color: #475569;
            max-width: 800px;
            margin: 0 auto 24px auto;
        }

        .landing-footer {
            background: #1e293b;
            color: #cbd5e1;
            text-align: center;
            padding: 18px 10px;
            font-size: 0.98rem;
        }

        @media (max-width: 1400px) {
            .features-list {
                gap: 16px;
            }

            .business-gallery {
                gap: 12px;
            }
        }

        @media (max-width: 1100px) {
            .features-list {
                flex-direction: column;
                align-items: center;
            }

            .feature-card {
                width: 100%;
                max-width: 350px;
            }

            .business-gallery {
                flex-direction: column;
                align-items: center;
            }

            .business-gallery img {
                width: 90vw;
                max-width: 400px;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .landing-nav {
            width: 100%;
            background: #0f172aee;
            box-shadow: 0 2px 12px rgba(37, 99, 235, 0.07);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 0;
        }

        .nav-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 32px;
            height: 70px;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-logo {
            height: 50px;
            border-radius: 10px;
        }

        .nav-title {
            font-size: 1.45rem;
            font-weight: 800;
            color: #2563eb;
            letter-spacing: -1px;
        }

        .nav-links {
            display: flex;
            gap: 28px;
            transition: max-height 0.3s, opacity 0.3s;
        }

        .nav-hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #2563eb;
            cursor: pointer;
            margin-left: 10px;
        }

        .nav-links a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 600;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: #2563eb;
        }

        .nav-right {
            display: flex;
            align-items: center;
        }

        .nav-login-btn {
            background: #fff;
            color: #2563eb;
            border: 1.5px solid #2563eb;
            border-radius: 8px;
            font-size: 1.05rem;
            font-weight: 700;
            padding: 10px 26px;
            margin-left: 18px;
            text-decoration: none;
            transition: background 0.2s, color 0.2s, border 0.2s;
        }

        .nav-login-btn:hover {
            background: #0d2a69;
            color: #fff;
            border: 1.5px solid #fff;
        }

        .testimonials-section {
            background: #f1f5f9;
            color: #1e293b;
            padding: 60px 20px 40px 20px;
            text-align: center;
        }

        .testimonials-section h2 {
            font-size: 2rem;
            color: #2563eb;
            margin-bottom: 36px;
        }

        .testimonials-list {
            display: flex;
            gap: 32px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .testimonial-card {
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 2px 12px rgba(37, 99, 235, 0.07);
            padding: 32px 24px;
            max-width: 340px;
            min-width: 220px;
            text-align: left;
            font-size: 1.08rem;
            color: #475569;
            position: relative;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .testimonial-card:hover {
            transform: translateY(-6px) scale(1.03);
            box-shadow: 0 8px 32px rgba(37, 99, 235, 0.13);
        }

        .testimonial-card span {
            display: block;
            margin-top: 18px;
            color: #2563eb;
            font-weight: 700;
            font-size: 1rem;
        }

        .faq-section {
            background: #fff;
            color: #1e293b;
            padding: 60px 20px 40px 20px;
            text-align: center;
        }

        .faq-section h2 {
            font-size: 2rem;
            color: #2563eb;
            margin-bottom: 36px;
        }

        .faq-list {
            max-width: 900px;
            margin: 0 auto;
            text-align: left;
        }

        .faq-item {
            margin-bottom: 28px;
        }

        .faq-item h3 {
            font-size: 1.13rem;
            color: #2563eb;
            margin-bottom: 6px;
        }

        .faq-item p {
            font-size: 1.05rem;
            color: #475569;
        }

        .cta-section {
            background: linear-gradient(90deg, #2563eb 0%, #1e293b 100%);
            color: #fff;
            text-align: center;
            padding: 60px 20px 60px 20px;
        }

        .cta-section h2 {
            font-size: 2.1rem;
            font-weight: 800;
            margin-bottom: 28px;
        }

        .cta-btn {
            background: #fff;
            color: #08235c;
            border: 1.5px solid #fff;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: 700;
            padding: 18px 48px;
            text-decoration: none;
            transition: background 0.2s, color 0.2s, border 0.2s;
            box-shadow: 0 4px 16px rgba(37, 99, 235, 0.10);
        }

        .cta-btn:hover {
            background: #67eb25;
            color: #fff;
            border: 1.5px solid #fff;
            box-shadow: 0 6px 20px rgb(255, 255, 255);
            transform: translateY(-2px) scale(1.04);
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 900px) {
            .landing-hero {
                padding-top: 220px;
                padding-bottom: 30px;
            }

            .landing-hero h1 {
                font-size: 2.1rem;
            }

            .features-section h2,
            .testimonials-section h2,
            .faq-section h2,
            .cta-section h2 {
                font-size: 1.5rem;
            }

            .features-list {
                flex-wrap: wrap;
                gap: 18px;
            }

            .feature-card {
                width: 95vw;
                max-width: 420px;
                min-height: 320px;
                padding: 28px 10px 22px 10px;
            }

            .feature-img {
                height: 150px;
                min-height: 100px;
                max-height: 180px;
            }

            .business-gallery img {
                width: 95vw;
                max-width: 420px;
                height: 180px;
                min-height: 120px;
                object-fit: cover;
            }

            .nav-content {
                padding: 0 10px;
            }
        }

        @media (max-width: 600px) {
            .nav-hamburger {
                display: block;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                gap: 8px;
                background: #0f172aee;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100vw;
                padding: 18px 0 10px 18px;
                z-index: 200;
                box-shadow: 0 2px 12px rgba(37, 99, 235, 0.07);
            }

            .nav-links.open {
                display: flex;
            }

            @media (max-width: 600px) {
                .landing-hero {
                    padding-top: 120px;
                    padding-bottom: 20px;
                }

                .landing-hero h1 {
                    font-size: 1.3rem;
                }

                .landing-hero p {
                    font-size: 1rem;
                }

                .landing-btn {
                    font-size: 0.95rem;
                    padding: 10px 18px;
                }

                .features-section {
                    padding: 30px 5px 20px 5px;
                }

                .features-list {
                    flex-direction: column;
                    gap: 12px;
                }

                .feature-card {
                    width: 9vw;
                    max-width: 99vw;
                    min-height: 260px;
                    padding: 14px 4px 10px 4px;
                }

                .feature-card h3 {
                    font-size: 1rem;
                }

                .feature-card p {
                    font-size: 0.95rem;
                }

                .feature-img {
                    height: 140px;
                    min-height: 70px;
                    max-height: 180px;
                }

                .business-gallery {
                    flex-direction: column;
                    gap: 10px;
                    margin: 20px auto 10px auto;
                }

                .business-gallery :hover {
                    transform: none;
                    box-shadow: 1px 4px 18px rgb(233, 233, 233);
                }

                .business-gallery img {
                    width: 59vw;
                    max-width: 99vw;
                    height: 120px;
                    min-height: 80px;
                    object-fit: cover;
                }

                .info-section,
                .testimonials-section,
                .faq-section,
                .cta-section {
                    padding: 30px 5px 20px 5px;
                }

                .testimonials-list {
                    flex-direction: column;
                    gap: 10px;
                }

                .testimonial-card {
                    max-width: 99vw;
                    min-width: 0;
                    padding: 16px 8px;
                    font-size: 0.98rem;
                }

                .faq-list {
                    padding: 0 2vw;
                }

                .faq-item h3 {
                    font-size: 1rem;
                }

                .faq-item p {
                    font-size: 0.95rem;
                }

                .cta-btn {
                    font-size: 1rem;
                    padding: 10px 18px;
                }

                .nav-content {
                    flex-direction: column;
                    height: auto;
                    gap: 8px;
                    padding: 0 2vw;
                }

                .nav-links {
                    flex-direction: column;
                    gap: 8px;
                    align-items: flex-start;
                }

                .nav-login-btn {
                    margin-left: 0;
                    margin-top: 8px;
                    width: 100%;
                }

                .nav-logo {
                    height: 36px;
                }
            }
        }