    <style>
        /* Reset margin and padding */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Body and Background */
        body {
            font-family: "Host Grotesk", sans-serif;
            background-color: #000;
            color: #333;
            display: flex;
            justify-content: center;
            margin: 0;
        }

        /* Main Wrapper */
        .main-wrapper {
            background-color: white;
            width: 90%;
            max-width: 1200px;
            display: flex;
            flex-direction: column;
            margin: 0 auto;
        }

        /* Logo Styling for Desktop */
        .logo-container {
            background-color: #000;
            text-align: center;
            padding: 15px;
        }

        /* Styling for the logo text */
        .logo {
            font-family: Arial, sans-serif;
            font-size: 52px;
            font-weight: bold;
            color: #333;
            text-align: center;
            letter-spacing: -3px;
        }

        /* Style for the poop emoji */
        .poop {
            font-size: 42px;
            vertical-align: text-top;
            margin: 0 -5px;
        }

        /* Navigation Styles from navbar.html */
        #nav {
            width: 100%;
            font-family: 'Host Grotesk', sans-serif;
            font-weight: 400;
            position: relative;
            background-color: #e15a1f;
        }

        #nav > a {
            display: none;
        }

        #nav li {
            position: relative;
        }

        #nav li a {
            color: #fff;
            display: block;
            text-decoration: none;
        }

        #nav li a:active {
            background-color: #c00 !important;
        }

        /* Remove bullets from navigation */
        #nav li a::before {
            display: none !important;
        }
        
        #nav ul li::before {
            display: none !important;
        }
        
        #nav li::before {
            display: none !important;
        }
        
        #nav * {
            list-style: none !important;
        }

        #nav span:after {
            width: 0;
            height: 0;
            border: 0.313em solid transparent;
            border-bottom: none;
            border-top-color: #efa585;
            content: '';
            vertical-align: middle;
            display: inline-block;
            position: relative;
            right: -0.313em;
        }

        /* First level navigation */
        #nav > ul {
            height: 3.75em;
            background-color: #e15a1f;
            display: flex;
            position: relative;
        }

        #nav > ul > li {
            flex: 1;
            height: 100%;
        }

        #nav > ul > li.theme-toggle-container {
            flex: 0 0 80px; /* Fixed width of 80px for the lightbulb container */
        }

        #nav > ul > li > a {
            height: 100%;
            font-size: 1.5em;
            line-height: 2.5em;
            text-align: center;
        }

        #nav > ul > li:not(:last-child) > a {
            border-right: 1px solid #cc470d;
        }

        #nav > ul > li:hover > a, #nav > ul:not(:hover) > li.active > a {
            background-color: #cc470d;
        }

        /* Second level navigation */
        #nav li ul {
            background-color: #cc470d;
            display: none;
            position: absolute;
            top: 100%;
            z-index: 1000;
        }

        #nav li:hover ul {
            display: block;
            left: 0;
            right: 0;
        }

        #nav li:not(:first-child):hover ul {
            left: -1px;
        }

        #nav li ul a {
            font-size: 1.25em;
            border-top: 1px solid #e15a1f;
            padding: 0.75em;
        }

        #nav li ul li a:hover, #nav li ul:not(:hover) li.active a {
            background-color: #e15a1f;
        }

        /* Theme Toggle Button */
        .theme-toggle {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 18px;
            padding: 0;
            color: white;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1001;
            width: 100%;
        }

        .theme-toggle:hover {
            background-color: #cc470d;
        }

        .theme-toggle-container {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #e15a1f;
            border-left: 1px solid #cc470d;
        }

        /* Dark Mode Styles */
        body.dark-mode .main-wrapper {
            background-color: #1a1a1a;
            color: #ffffff;
        }

        body.dark-mode .content {
            background-color: #1a1a1a;
            color: #ffffff;
        }

        body.dark-mode .content h2 {
            color: #ffffff;
        }

        body.dark-mode .content h2::before {
            color: #ffffff;
        }

        body.dark-mode a {
            color: #ff9966;
        }

        /* Content Area */
        .content {
            background-color: white;
            padding: 40px;
            margin: 20px auto;
            max-width: 1000px;
            border-radius: 8px;
        }

        .content h2 {
            font-family: "Faculty Glyphic", sans-serif;
            font-weight: 800;
            font-style: normal;
            font-size: 24px;
            position: relative;
            padding-left: 1.5em;
            color: #333;
            margin-top: 20px;
            margin-bottom: 15px;
        }

        .content h2::before {
            content: '•';
            position: absolute;
            left: 0;
            font-size: 1.2em;
            line-height: 1;
            color: #333;
        }

        .content p {
            margin-bottom: 15px;
            line-height: 1.6;
        }

        /* Footer */
        .footer {
            background-color: #0078D4;
            color: white;
            text-align: center;
            padding: 15px;
            margin: 0;
        }

        .footer a {
            color: white;
            margin: 0 10px;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        /* Clearfix */
        .clearfix:after {
            visibility: hidden;
            display: block;
            font-size: 0;
            content: " ";
            clear: both;
            height: 0;
        }

        /* Responsive Styles */
        @media only screen and (max-width: 40em) {
            html {
                font-size: 75%;
            }

            #nav {
                position: relative;
            }

            #nav > a:first-of-type {
                width: 3.125em;
                height: 3.125em;
                text-align: left;
                text-indent: -9999px;
                background-color: #e15a1f;
                position: relative;
                display: block;
            }

            #nav > a:last-of-type {
                display: none;
            }

            #nav > a:first-of-type:before, #nav > a:first-of-type:after {
                position: absolute;
                border: 2px solid #fff;
                top: 35%;
                left: 25%;
                right: 25%;
                content: '';
            }

            #nav > a:first-of-type:after {
                top: 60%;
            }

            #nav:not(:target) > a:first-of-type {
                display: block;
            }
            
            #nav:target > a:first-of-type {
                display: none;
            }
            
            #nav:target > a:last-of-type {
                display: block;
                width: 3.125em;
                height: 3.125em;
                text-align: center;
                background-color: #e15a1f;
                position: relative;
                color: white;
                font-size: 1.5em;
                line-height: 3.125em;
                text-indent: 0;
            }

            /* First level mobile */
            #nav > ul {
                height: auto;
                display: none;
                position: absolute;
                left: 0;
                right: 0;
                flex-direction: column;
                background-color: #e15a1f;
                z-index: 1000;
            }

            #nav:target > ul {
                display: flex;
            }

            #nav > ul > li {
                flex: none;
                width: 100%;
            }

            #nav > ul > li > a {
                height: auto;
                text-align: left;
                padding: 0 0.833em;
            }

            #nav > ul > li:not(:last-child) > a {
                border-right: none;
                border-bottom: 1px solid #cc470d;
            }

            .theme-toggle-container {
                border-left: none;
                border-top: 1px solid #cc470d;
            }

            .theme-toggle {
                justify-content: flex-start;
                padding-left: 0.833em;
            }

            /* Second level mobile */
            #nav li ul {
                position: static;
                padding: 1.25em;
                padding-top: 0;
            }

            .content {
                padding: 20px;
                margin: 10px;
            }

            .logo {
                font-size: 32px;
            }

            .poop {
                font-size: 28px;
            }
        }
    </style>