.logo {
    display: flex;
    align-items: center;
    text-align: left;
}

.text-light {
    color: #ffffff; /* Adjust the color as needed */
    margin: 0; /* Remove default margin to avoid spacing issues */
}

.logo img {
    max-width: 100%;
    height: auto;
    margin-right: 10px; /* Adjust the margin as needed */
}

@media (max-width: 768px) {
    .logo {
        flex-direction: column; /* Stack elements vertically on smaller screens */
        text-align: center;
    }

    .logo img {
        margin-right: 0; /* Remove margin for better spacing on smaller screens */
        margin-bottom: 10px; /* Add bottom margin for spacing between image and text */
    }
}
