* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            background: #1b2057;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.5rem 2rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

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

        .nav-logo {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1a1a1a;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: #666;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }

        .nav-links a:hover {
            color: #1a1a1a;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 2rem;
            background: #1b2057;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-content {
            max-width: 800px;
        }

        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 300;
            line-height: 1.1;
            margin-bottom: 2rem;
            color: #ffffff;
            letter-spacing: -0.02em;
        }

        .hero-tagline {
            font-size: 1.5rem;
            font-weight: 400;
            color: #ffffff;
            margin-bottom: 3rem;
            max-width: 600px;
            line-height: 1.4;
        }

        .hero-cta {
            display: inline-block;
            background: #1b2057;
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.2s ease;
            border: 2px solid #1a1a1a;
        }

        .hero-cta:hover {
            background: transparent;
            color: #ffffff;
        }

        /* Content Sections */
        .section {
            padding: 6rem 2rem;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .section-title {
            font-size: 2.5rem;
            font-weight: 300;
            color: #ffffff;
            margin-bottom: 1.5rem;
            letter-spacing: -0.01em;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: #ffffff;
            max-width: 700px;
            font-weight: 400;
            line-height: 1.5;
        }

        /* About Section */
        .about {
            background: #fafafa;
        }

        .about-content {
            font-size: 1.5rem;
            color: #333;
            max-width: 900px;
            line-height: 1.6;
            font-weight: 400;
        }

        .highlight {
            color: #1a1a1a;
            font-weight: 600;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .service-card {
            padding: 0;
            background: transparent;
        }

        .service-number {
            font-size: 1rem;
            color: #999;
            font-weight: 500;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .service-title {
            font-size: 1.75rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1.5rem;
            letter-spacing: -0.01em;
        }

        .service-description {
            font-size: 1.1rem;
            color: #ffffff;
            line-height: 1.6;
            font-weight: 400;
        }

        /* Why Us Section */
        .why-us {
            background: #1a1a1a;
            color: white;
        }

        .why-us .section-title {
            color: white;
        }

        .why-us .section-subtitle {
            color: #ccc;
        }

        .value-content {
            font-size: 1.5rem;
            line-height: 1.6;
            font-weight: 400;
            max-width: 900px;
            margin-top: 2rem;
        }

        .highlight-light {
            color: #ffffff;
            font-weight: 600;
        }

        /* Contact Section */
        .contact {
            background: #fafafa;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 4rem;
            margin-top: 4rem;
        }

        .contact-item {
            background: transparent;
        }

        .contact-label {
            font-size: 0.95rem;
            color: #999;
            font-weight: 500;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .contact-value {
            font-size: 1.25rem;
            color: #1a1a1a;
            font-weight: 500;
        }

        .contact-value a {
            color: #1a1a1a;
            text-decoration: none;
            transition: opacity 0.2s ease;
        }

        .contact-value a:hover {
            opacity: 0.7;
        }

        /* Footer */
        .footer {
            padding: 2rem;
            background: #1b2057;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-text {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            nav {
                padding: 1rem;
            }

            .nav-links {
                display: none;
            }

            .hero {
                padding: 0 1rem;
            }

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

            .hero-tagline {
                font-size: 1.25rem;
            }

            .section {
                padding: 4rem 1rem;
            }

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

            .services-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Animation on scroll */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
