            /* Color Variables */
        :root {
            --nav-bg: #ffffff;
            --text-color: #333333;
            --hover-color: #4a6fa5;
            --accent-color: #4a6fa5;
            --border-color: #eaeaea;
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        .navbar {
            background-color: var(--nav-bg);
            box-shadow: var(--shadow);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }

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

        .logo {
            color: var(--text-color);
            font-size: 1.5rem;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--accent-color);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            transition: all 0.3s ease;
            margin-left: auto; /* This pushes the menu to the right */
        }

        .nav-item {
            margin-left: 2.5rem;
        }

        .nav-link {
            color: var(--text-color);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: var(--hover-color);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            outline: none;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 2px;
            background-color: var(--text-color);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .hamburger.active span:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: var(--nav-bg);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
                transition: right 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
                padding: 0;
                margin: 0;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-item {
                margin: 1.5rem 0;
                margin-left: 0;
            }

            .nav-link {
                font-size: 1.2rem;
                padding: 0.5rem 1rem;
            }

            .nav-link::after {
                display: none;
            }
        }

        /* Demo content */
        .content {
            padding: 3rem 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        h1 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }

        p {
            margin-bottom: 1rem;
        }