/* Brand Text Styles */
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-brand img {
    margin-right: 15px;
    height: 50px;
    width: auto;
}

.brand-text h1 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1;
}

.brand-text p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .brand-text h1 {
        font-size: 24px;
    }

    .brand-text p {
        font-size: 12px;
    }

    .navbar-brand img {
        height: 40px;
        margin-right: 10px;
    }
}

@media (max-width: 576px) {
    .brand-text h1 {
        font-size: 20px;
    }

    .brand-text p {
        font-size: 11px;
    }

    .navbar-brand img {
        height: 35px;
        margin-right: 8px;
    }
}