/* Basic styling for the header */
.header-container {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #f5f5f5;
}

.logo {
    width: 50px; /* Adjust as needed */
    height: auto;
    margin-right: 15px;
}

.slogan {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
}

