.brand-container {
    display: flex;
    align-items: center; /* Vertically centers the icon and the text */
    text-decoration: none;
    gap: 12px; /* Puts a clean space between the icon and text */
}

.brand-icon {
    height: 40px; /* Keeps the icon neat */
    width: auto;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111111;
}