.brand-container {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    border-radius: 8px;
}

.logo-box {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 32px;
}

.logo-icon svg {
    width: 100%;
    height: auto;
}

.brand-name {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 3px;
    flex-shrink: 0;
}

.description {
    font-size: 1.2rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .brand-container {
        flex-wrap: wrap;
    }

    .description {
        flex-basis: 100%;
        margin-top: 10px;
    }
}