<style>
    /* General Reset */
    body, html {
        margin: 0;
        padding: 0;
        font-family: 'Exo 2', sans-serif;
        height: 100%;
    }

    /* Background styling */
    .background {
        background-color: #f4f4f4;
        min-height: 100vh;
        padding-top: 70px; /* Adjust for the header */
    }

    /* General Header Styling */
.header-container {
    font-family: 'Exo 2', sans-serif;
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 10;
}

/* Logo and Slogan */
.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    max-height: 24px;
    width: auto;
}

.slogan {
    font-size: 1.2rem;
    color: white;
    white-space: nowrap;
    transition: font-size 0.3s ease; /* Smooth resizing on smaller screens */
}

/* Full Navigation Menu */
.nav-menu {
    display: flex;
    gap: 15px;
    flex-shrink: 1; /* Allow shrinking if necessary */
    overflow: hidden; /* Prevent overflow */
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    padding: 5px 10px;
}

/* Menu Icon (Hidden by Default) */
.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* Dropdown Menu (Initially Hidden) */
.dropdown-menu {
    display: none; /* Hidden by default */
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: black;
    padding: 20px 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.dropdown-menu a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    padding: 10px 20px;
    display: block; /* Full-width links */
}

/* Responsive Design: Show Menu Icon on Small Screens */
@media (max-width: 800px) {
    .nav-menu {
        display: none; /* Hide full navigation */
    }

    .menu-icon {
        display: block; /* Show menu icon */
    }
}
</style>
