body {
background-color:#363636;
color:darkorange;
font-family: Arial, sans-serif;
     margin: 0.2;
     padding: 0.2;
text-align: center;
}
.container-1 {
width: 80%;
margin: 0 auto;
padding: 20px;
}
header {
    text-align: center;
    margin-bottom: 20px;
}
.image-header-container {
    width: 100%; /* Full width for smaller screens */
    max-width: 600px; /* Max width for larger screens */
    height: auto; /* Adjust height to maintain aspect ratio */
    overflow: visible; /* Hide any overflow */
    margin: 0 auto;
    display: block;
}
.image-header-container img {
    width: 100%; /* Responsive image width */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Cover the container while maintaining aspect ratio */
}
@media (min-width: 768px) {
    .image-header-container {
        max-width: 900px; /* Larger container for tablets */
        height: auto; /* Set height for tablets */
    }
}
.menu-bar {
    background-color: #454545;
    overflow: visible;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(167, 167, 167, 0.60);
}
.menu-bar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
.menu-bar a:hover {
    background-color: #575757;
    border-radius: 20px;
}
.dropdown {
    float: left;
    overflow: visible;
    position: relative;
}
.dropdown .dropbtn {
    cursor: pointer;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #444;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    top: 100%;
    left: 0;
}
.dropdown-content a {
    float: none;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.dropdown-content a:hover {
    background-color: #575757;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu .submenu-btn {
    position: relative;
}
.dropdown-submenu-content {
    display: none;
    position: absolute;
    background-color: #555;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1001;
    top: 0;
    left: 100%;
}
.dropdown-submenu-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.dropdown-submenu-content a:hover {
    background-color: #666;
}
.dropdown-submenu:hover .dropdown-submenu-content {
    display: block;
}
.dropdown-submenu:hover > .submenu-btn {
    background-color: #575757;
}

/* Clearfix for menu bar */
.menu-bar::after {
    content: "";
    display: table;
    clear: both;
}

/* Make sure dropdown content appears above other elements */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #444;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    top: 100%;
    left: 0;
}
.contact-page {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1rem;
}
.contact-page form label,
.contact-page form input,
.contact-page form textarea,
.contact-page form button {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
}
.contact-page form input,
.contact-page form textarea {
    padding: 0.5rem;
    border: 1px solid #555;
    border-radius: 4px;
    background: #2c2c2c;
    color: #eee;
}
.contact-page form label {
	text-align: left;
}
.contact-page form button {
    background: darkorange;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}
