body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #e1ecf8;
}

.page-background {
    background-color: #e1ecf8; /* Light blue background */
}

.header-section {
    position: relative;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
    overflow: visible;
}





.topbar {
    background-color: #012a63;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.truck-logo {
    height: 40px;
    margin-right: 20px;
}

nav {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    position: relative;
    display: inline-block;
}

nav a:hover {
    background-color: #0e3e7a;
}

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

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #012a63;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%;
    left: 0;
    flex-direction: column;
    min-width: 200px;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

/* Mobile responsive tweaks */
@media (max-width: 600px) {
    
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px auto;
    max-width: 1000px;
}
.image-card {
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.image-card img {
    width: 100%;
    display: block;
}
.image-card h3 {
    margin: 15px 0 5px 0;
    font-size: 18px;
    color: #111;
}
.image-card p {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

.no-header {
    padding-top: 600px; /* Matches the header-section height */
}

.bio-content {
    max-width: 1000px;
    margin: 300px auto 40px auto;
    padding: 40px 20px;
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
}


.bio-content {
    max-width: 1000px;
    margin: 300px auto 40px auto;
    padding: 40px 20px;
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
}





.short-page .header-section,
body:not(.long-page) .header-section {
    padding-bottom: 0 !important;
    overflow: hidden;
    height: auto;
    min-height: 600px;
}


.header-image {
    background-image: url("header_section.png");
    background-size: auto;
    height: 2000px;
    background-attachment: scroll;
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: 600px;
}


.header-image-wrapper {
    height: 600px;
    overflow: hidden;
    position: relative;
}

.header-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}


.header-section {
    background-image: url("header_section.png");
    background-size: auto;
    height: 2000px;
    background-attachment: scroll;
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    text-align: center;
    padding: 0 20px 60px 20px;
    position: relative;
    color: #000;
}

.header-image-text {
    background: rgba(255,255,255,0.95);
    max-width: 1000px;
    margin: 400px auto 0 auto; /* Adjust to push content down */
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    text-align: left;
}
