/* Desktop header image size */
.header__image img {
    width: 600px;
    max-width: 600px;
    height: auto;
}

/* Ensure mobile styles from styles.css take precedence */
@media (max-width: 768px) {
    .header__image img {
        width: 80% !important;
        max-width: 300px !important;
    }
}

@media (max-width: 600px) {
    .header__image img {
        width: 85vw !important;
        max-width: 85vw !important;
    }
}