header {
    background-color: #333;
    color: white;
    padding: 1em 0;
}

.head-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.head-container a.logo-link {
    display: inline-block;
    /* Allows you to control width/height if needed. */
    /* Remove text styling if you had any directly on the 'a' */
    text-decoration: none;
    color: inherit;
    /* Or remove if you don't want a text color */
}

.head-container a.logo-link img {
    display: block;
    /* Prevents extra space below the image */
    height: auto; /* Maintain aspect ratio */
    /* You might want to set a specific width or max-width here */
    /* width: 150px; */
    /* height: 50px; */
}

header {
    background-color: #333;
    color: white;
    padding: 1em 0;
}

.head-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav ul li a.active {
    font-weight: bold;
    color: #2e7d32;
    /* Or another prominent color */
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.foot-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Basic responsive adjustments */
@media (max-width: 768px) {
    .head-container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        margin-top: 10px;
        flex-direction: column;
    }

    nav ul li {
        margin: 5px 0;
    }
}
