.thumbnail-left {
    float: left;
    margin: 0 1.5rem 1rem 0;  /* top, right, bottom, left */
    max-width: 200px;  /* Adjust size as needed */
    height: auto;
}

.thumbnail-right {
    float: right;
    margin: 2rem 0 1rem 1.5rem;
    max-width: 200px;
    height: auto;
}

/* Optional: Add subtle styling */
.thumbnail-left, .thumbnail-right {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Clear floats after content if needed */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Target only the main logo, not the navbar brand */
.section.header > .container > img {
    width: 80%;
    max-width: 640px;
    height: auto;
    margin: 0 auto 1rem auto;
    display: block;
}

/* Ensure the navbar brand logo stays hidden when it should */
#brand.hide {
    display: none !important;
}

/* Style the navbar brand when it's visible (mobile menu) */
#brand:not(.hide) {
    width: 40px; /* Or whatever size you want for mobile menu */
    height: auto;
}

/* Footer remains the same */
.section.footer.dark img {
    width: 50%;
    max-width: 300px;
    height: auto;
    opacity: 0.9;
}


/* Mobile adjustments (optional but recommended) */
@media (max-width: 768px) {
    .section.header img {
        width: 60%; /* Bit smaller on mobile */
        max-width: 250px;
    }
    
    .section.footer.dark img {
        width: 40%;
        max-width: 150px;
    }
}

