/* Logo Header */
.header-inline {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.header-inline-logo {
    height: 150px; /* Adjust to your preference ie 60px */
    width: auto;
    flex-shrink: 0;
}

.header-inline-text h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.header-inline-text .subtitle {
    margin: 0.25rem 0 0;
    color: #374151;
    font-size: 1rem;
    max-width: 700px;
    text-align: justify;
}

/* Mobile layout: logo above text */
@media (max-width: 600px) {
    .header-inline {
        flex-direction: column;
        text-align: center;
    }

    .header-inline-logo {
        height: 70px;
    }
}
