.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.brand-logo {
    height: 150px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.4));
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #ffffff, #00f0ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Fallback for non-webkit if needed, but text-fill-color usually handles it */
}

/* Ensure proper spacing in the grid for this column */
.footer-grid .footer-brand {
    grid-column: span 1;
    /* Default behavior, just ensuring */
}