.container {
    max-width: 1200px;  /* Set header width to 1200px */
    width: 100%;  /* Ensure it doesn't exceed 1200px */
    margin: 0;  /* Aligns the header to the left */
    display: flex;
    align-items: center;
    justify-content: space-between;
    //border-bottom: 2px solid #ccc; /* Light gray border */
}
.full-width-line {
    width: 100%;
    height: 2px; /* Adjust thickness */
    background-color: #ccc; /* Adjust color */
    border: none; /* Remove default hr border */
    margin: 0;
}
.logo {
    display: block;
    margin-left: 0; /* Indent logo from the left */
}

.logo img {
    width: 280px; /* Adjust logo size */
    height: auto;
    display: block;
}

.topnav {
    margin-right: 0;
    background-color: #ffffff;
    overflow: hidden;
    z-index: 1000;
}

.topnav a {
    float: left;
    display: block;
    color: #333333;
    padding: 15px 8px;
    text-decoration: none;
    text-align: right;
    font-size: 20px;
    z-index: 1000;
}
.topnav .icon {
    display: none;
}

/* dropdown2 container - needed to position the dropdown2 content */
.dropdown2 {
    float: left;
    overflow: hidden;
}

/* Style the dropdown2 button to fit inside the topnav */
.dropdown2 {
    font-size: 20px;
    border: none;
    outline: none;
    color: #333333;
    padding: 12px 12px;
    background-color: #ffffff;
    font-family: inherit;
    margin: 0;
    z-index: 1000;
}

/* Style the dropdown2 content (hidden by default) */
.dropdown2-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
}

/* Style the links inside the dropdown2 */
.dropdown2-content a {
    float: none;
    color: black;
    padding: 6px 12px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Add a dark background on topnav links and the dropdown2 button on hover */
.topnav a:hover, .dropdown2:hover .dropbtn2 {
    background-color: #0062cc;
    color: white;
}

/* Add a grey background to dropdown2 links on hover */
.dropdown2-content a:hover {
    background-color: #ddd;
    color: black;
}

/* Show the dropdown2 menu when the user moves the mouse over the dropdown2 button */
.dropdown2:hover .dropdown2-content {
    display: block;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
    .topnav a:not(:first-child), .dropdown2 {
        display: none;
    }
    .topnav a.icon {
        float: right;
        display: block;
        z-index: 1000;
    }
    .topnav.responsive {position: relative;}
    .topnav.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
    .topnav.responsive .dropdown2 {float: none;}
    .topnav.responsive .dropdown2-content {position: relative;}
    .topnav.responsive .dropdown2 .dropbtn2 {
        display: block;
        width: 100%;
        text-align: left;
    }
    .mobileIcon {
        font-size: 32px !important;
        padding: 6px !important;
    }
}
