body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 50px;
}

/* Ensure nav/menu is not centered by the global body rule and stretches full width */
nav { text-align: left; width: 100%; }

/* Force the APNSOFT menu container to use flex and stretch */
#mnE5F520F3_-0p {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box;
}

/* Keep the right-side menu items aligned to the right and laid out horizontally */
#mnE5F520F3_rtb {
    margin-left: auto !important;
    display: flex !important;
    gap: 8px;
    align-items: center;
}

.container {
    max-width: 800px;
    margin: auto;
}

h1 {
    font-size: 3em;
}

p {
    font-size: 1.2em;
}

.logo-container {
    display: flex;
    align-items: center; /* Centers items vertically */
    gap: 10px; /* Adds spacing between image and text */
}

.logo {
    width: 120px; /* Adjust size */
    height: auto;
}

.site-name {
    font-size: 20.5em; /* Adjust text size */
    color: white;
    text-decoration: none;
    font-weight: bold;
    line-height: 50px; /* Matches logo height for vertical alignment */
}


ul {
    list-style: none;
    padding: 0;
}

li {
    display: inline;
    margin: 0 20px;
}

a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

    a:hover {
        color: #ff6600;
    }

.button {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    border-radius: 5px;
}

    .button:hover {
        background-color: #ff3300;
    }

.logo {
    width: auto; /* Adjust size */
    height: 50px;
    text-align: left;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    display: block; /* Initially hidden */
    list-style: none;
    padding: 10px;
    border-radius: 5px;
    min-width: 150px;
}

/* Class that will be toggled by JavaScript */
.show-dropdown {
    display: block;
}

