body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;
    margin: 0;
    padding: 0;
}

.sticky-container {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    z-index: 1000; /* Keep header on top */
}

header {
    background: url('https://gisjorgensen.com/SRSC/media/SRSC_Standard_header.png') no-repeat center center/cover;
    color: white;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Left Section */
.left-content {
    display: flex;
    align-items: center;
}

.logo {
    height: 70px;
    margin-right: 20px;
}

/* Dropdown Menu */
.menu-container {
    position: relative;
}

.menu-button {
    background-color: #3a4d38;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
}

.menu-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 150px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.menu-content a {
    color: black;
    padding: 10px;
    display: block;
    text-decoration: none;
}

.menu-content a:hover {
    background-color: #ddd;
}

.menu-container:hover .menu-content {
    display: block;
}

/* Right Section - Home Button Colors */
.home-button {
    display: flex;
    gap: 5px;
}

.home-box {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.box1 { background-color: #a0b6d6; }
.box2 { background-color: #8b7355; }
.box3 { background-color: #4f4f4f; }
.box4 { background-color: #6a3a1e; }
.box5 { background-color: #2e2e2e; }

.home-box:hover {
    opacity: 0.7;
}

.sub-header {
    background-color: #494949;
    color: white;
    text-align: center;
    padding: 5px 0;
    font-size: 16px;
    letter-spacing: 3px;
    position: sticky;
    top: 60px;
    z-index: 5;
}
