.site-banner {
    background-color: #00b3b3;
    color: white;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-banner h1 {
    margin: 0 0 0 15px; /* Added left margin to text */
    color: white;
}

.site-banner p {
    margin: 0;
    font-style: italic;
    position: absolute; /* Positioning subtitle under main title visually */
    margin-top: 40px; 
}

.logo {
    width: 50px;
    height: auto;
}

/* Responsive banner adjustments if needed */
@media screen and (max-width: 400px) {
    .banner-content {
        flex-direction: column;
    }
    .site-banner h1 {
        margin: 10px 0 0 0;
    }
    .site-banner p {
        position: static;
        margin-top: 5px;
    }
}