body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #013220;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.header-image-container {
    position: relative;
    width: 100%;
    text-align: center;
}
.header-image-container .image-section img {
    width: 100%;
    height: auto;
    display: block;
}
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
}
.logo img {
    height: 50px;
}
.menu {
    display: flex;
    gap: 20px;
}
.menu a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
}
.menu a:hover {
    color: orange;
}
.dropdown {
    position: relative;
	margin-top: 5px;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    min-width: 150px;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu a {
    display: block;
    padding: 10px;
    color: black;
    text-decoration: none;
}
.dropdown-menu a:hover {
    background: lightgray;
}
.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    margin-top: 50px;
    box-sizing: border-box;
    flex-grow: 1;
}

.image-section .center-image {
    width: 100%;
    height: 1050px;
    display: block;
}


.footer {
    background: #ff5e00;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: auto;
    width: 100%;
    position: relative;
}
.footer a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    margin: 0 10px;
}
