        :root {
            --accent-light: #f7a35c;
            --accent-dark: #ef6a3e;
            --base-bg: #f9f6f2;
            --contrast: #1f1f1f;
            --shadow: rgba(0, 0, 0, 0.05);
        }

        body {
            margin: 0;
            font-family: 'PT Sans', sans-serif;
            background-color: var(--base-bg);
            color: var(--contrast);
            scroll-behavior: smooth;
            font-size: 0.9rem;
            line-height: 1.7;
        }

        header {
            background: transparent;
            padding: 1rem 1rem;
            position: absolute;
            top: 0;
            width: 100%;
            z-index: 10;
            border-bottom: none;
            box-shadow: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-sizing: border-box;
        }

        .logo img {
            height: 48px;
            width: auto;
            object-fit: contain;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 1.5rem;
        }

        .nav-links a {
            font-size: 0.9rem;
            position: relative;
            text-decoration: none;
            color: white;
            padding: 0.5rem 0.5rem;
            display: inline-block;
            transition: color 0.3s ease;
        }

        .hero {
            position: relative;
            background: url('skyline-2.png') center/cover no-repeat;
            color: white;
            padding: 2rem;
            padding-top:10rem;
            text-align: left;
            background-image: 
                url('skyline-2.webp'),
                url('skyline-2.png');
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            line-height: 1.1;
            color: white;
        }

        .hero p {
            font-size: 0.9rem;
            margin-bottom: 2.5rem;
            color: white;
        }

        .btn-primary {
            background-color: var(--accent-light);
            color: var(--contrast);
            padding: 0.9rem 2rem;
            border: none;
            font-size: 1rem;
            border-radius: 999px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hero-strip {
            position: relative;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 2;
            padding: 2rem 1rem;
            margin-top: 70px;
            font-size: 0.9rem;
            box-sizing: border-box;
        }

        @media (max-width: 768px) {
            .hero {
                background-image: 
                    url('skyline-2-mobile.webp'),
                    url('skyline-2-mobile-768w.webp'),
                    url('skyline-2.png');
                padding: 2rem 1rem;
                padding-top: 8rem;
            }

            .hero h1 {
                font-size: 1.75rem;
            }

            .hero p {
                font-size: 1rem;
            }

            header {
                padding: 0.5rem 1rem;
            }
        }