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

/* Fixed Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ff7e5f;
    padding: 15px 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    height: 60px; /* fixed navbar height */
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    line-height: 1;
}

/* Content to prevent overlap with navbar */
.content-wrapper { /* Renamed for clarity, see Step 3 */
    padding-top: 100px; /* navbar height (60px) + extra 40px space */
    max-width: 800px; /* Default max-width for most pages */
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Your footer image styles (as previously discussed for mobile responsiveness) */
footer {
    text-align: center;
    margin: 40px 0;
}
footer img {
    width: 150px; /* Default size for larger screens */
    height: auto;
}

@media (max-width: 768px) { /* Adjust this breakpoint as needed */
    footer img {
        width: 100px; /* Smaller size for mobile screens */
    }
}