    <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;
            }
        }
        
        
        
        /* ========== COLLAPSIBLE SIDE MENU STYLES ========== */

/* Toggle Button */
.side-menu-toggle {
    position: fixed;
    left: 0;
    top: 180px; /* Adjust based on your header height */
    background-color: #e15a1f;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-family: "Host Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0 5px 5px 0;
    z-index: 1001;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.side-menu-toggle:hover {
    background-color: #cc470d;
    padding-right: 25px;
}

.side-menu-toggle .toggle-icon {
    font-size: 20px;
    margin-right: 8px;
}

/* Hide toggle button when menu is open */
.side-menu.open ~ .side-menu-toggle {
    left: -200px;
}

/* Side Menu Container */
.side-menu {
    width: 280px;
    background-color: #f5f5f5;
    position: fixed;
    left: -280px; /* Hidden by default */
    top: 165px; /* Below header */
    bottom: 0;
    overflow-y: auto;
    border-right: 3px solid #e15a1f;
    z-index: 1002;
    transition: left 0.3s ease;
    box-shadow: 3px 0 10px rgba(0,0,0,0.1);
}

/* Menu Open State */
.side-menu.open {
    left: 0;
}

/* Side Menu Header */
.side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #e15a1f;
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.side-menu-header h3 {
    font-family: "Faculty Glyphic", sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}

/* Close Button */
.side-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    transition: transform 0.2s ease;
}

.side-menu-close:hover {
    transform: scale(1.2);
}

/* Side Menu List */
.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu ul li {
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
}

/* Side Menu Links */
.side-menu ul li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 15px 20px;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
}

.side-menu ul li a:before {
    content: '?';
    position: absolute;
    left: 5px;
    opacity: 0;
    transition: all 0.3s ease;
}

.side-menu ul li a:hover {
    background-color: #e15a1f;
    color: white;
    padding-left: 30px;
}

.side-menu ul li a:hover:before {
    opacity: 1;
    left: 10px;
}

/* Active menu item */
.side-menu ul li a.active {
    background-color: #cc470d;
    color: white;
    font-weight: 600;
    padding-left: 30px;
}

.side-menu ul li a.active:before {
    content: '?';
    opacity: 1;
    left: 10px;
}

/* Overlay for mobile */
.side-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.side-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Adjust content when menu is open on desktop */
@media only screen and (min-width: 1025px) {
    .content {
        transition: margin-left 0.3s ease;
    }
    
    .side-menu.open ~ .main-wrapper .content,
    body.menu-open .content {
        margin-left: 300px;
    }
}

/* Dark Mode for Side Menu */
body.dark-mode .side-menu {
    background-color: #2a2a2a;
    border-right-color: #ff9966;
}

body.dark-mode .side-menu-header {
    background-color: #cc470d;
}

body.dark-mode .side-menu ul li {
    border-bottom-color: #444;
}

body.dark-mode .side-menu ul li a {
    color: #ffffff;
}

body.dark-mode .side-menu ul li a:hover {
    background-color: #e15a1f;
}

body.dark-mode .side-menu ul li a.active {
    background-color: #cc470d;
}

body.dark-mode .side-menu-toggle {
    background-color: #cc470d;
}

body.dark-mode .side-menu-toggle:hover {
    background-color: #e15a1f;
}

/* Mobile Responsive */
@media only screen and (max-width: 1024px) {
    .side-menu {
        width: 280px;
        left: -280px;
        top: 0; /* Full height on mobile */
    }
    
    .side-menu-toggle {
        top: 140px; /* Adjust for mobile header */
    }
    
    /* Don't push content on mobile */
    body.menu-open .content {
        margin-left: 0 !important;
    }
}

@media only screen and (max-width: 640px) {
    .side-menu {
        width: 250px;
        left: -250px;
    }
    
    .side-menu-toggle {
        font-size: 14px;
        padding: 10px 15px;
    }
}
        
        
        
    </style>