header {
    background-color: #2b2b2b;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.nav-left {
    display: flex;
    justify-content: flex-start;
    position: absolute;
    left: -300px; /* Adjust this value to push it further to the left */
    top: 75%;
    transform: translateY(-50%);
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

header .nav-left img {
    height: 60px; /* Set the height to the original height */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #eee;
    text-decoration: none;
    padding: 14px 20px;
    display: inline-block;
}

nav ul li a:hover {
    background-color: #98662e;
    color: white;
}

.header-dropdown {
    position: relative;
    display: inline-block;
}

.header-dropdown-content {
    display: none;
    position: absolute;
    background-color: #2b2b2b;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 10; /* Ensure it appears above the slideshow */
}

.header-dropdown-content a {
    color: #eee;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.header-dropdown-content a:hover {
    background-color: #98662e;
}

.header-dropdown:hover .header-dropdown-content {
    display: block;
}

.header-dropdown:hover .header-dropbtn {
    background-color: #98662e;
}


footer {
    background-color: #2b2b2b;
    color: #eee;
    padding: 2rem 1rem;
    text-align: left;
    font-size: 0.9rem;
    margin-bottom: 0px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-description {
    flex: 2;
    margin-right: 2rem;
}

.footer-links {
    display: flex;
    flex: 1;
    justify-content: space-between;
}

.footer-links div {
    margin-right: 2rem;
}

.footer-links h3 {
    color: #98662e;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #eee;
    text-decoration: none;
}

.footer-links ul li a:hover {
    color: #98662e;
    text-decoration: underline;
}

.mt-10 {
    margin-top: 0px;   
}
}