header {
    padding: 60px 20px;
    background: white;
    display: flex;
    justify-content: center; /* Centers the whole group */
}

.header-content {
    display: flex;
    align-items: center; /* Aligns logo and text vertically */
    gap: 30px;           /* Space between logo and text */
    text-align: left;    /* Keeps text aligned left relative to logo */
}

.logo {
    height: 100px;       /* Adjust this height to fit your logo's design */
    width: auto;
}

h1 {
    font-size: 2.8rem;
    letter-spacing: 3px;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
}

/* Mobile tweak to center everything on small screens */
@media (max-width: 700px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .logo {
        height: 80px; /* Slightly smaller logo on mobile */
    }
}

.featured-image {
    display: block;
    margin: 40px auto 0; /* Centers it and adds space above */
    width: auto;        /* Your preferred width */
    max-width: 100%;     /* Prevents it from overflowing on tiny phones */
    height: auto;        /* Keeps the proportions correct */
    border-radius: 4px;  /* Optional: gives it a slightly soft edge */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Optional: subtle shadow for depth */
}