/* Mobile CSS - Adjusted for Responsive Navbar and Layout */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar .logo {
    color: white;
    font-size: 1.5em;
    font-weight: bold;
}

.navbar .menu {
    display: none;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
}

.navbar .menu a {
    padding: 10px;
    color: white;
    text-decoration: none;
    text-align: center;
    border-bottom: 1px solid #444;
}

.navbar .menu a:hover {
    background-color: #555;
}

.navbar .menu-icon {
    display: block;
    font-size: 1.8em;
    color: white;
    cursor: pointer;
}

/* Show menu when toggled */
.navbar.active .menu {
    display: flex;
}

@media (min-width: 768px) {
    .navbar .menu {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
    }
    .navbar .menu a {
        border: none;
        padding: 10px 15px;
    }
    .navbar .menu-icon {
        display: none;
    }
}

/* General Mobile Adjustments */
.container {
    padding: 60px 15px 20px;
}

.content {
    text-align: center;
    padding: 10px;
}
