.header {
/*     all:revert;
 */    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 10px 20px; */
    /* background:linear-gradient(to bottom, rgba(43, 138, 234, 0.6), transparent); */
    background:white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 25px;
    
}

.logo {
    width: 400px;  
    height: 70px;
}
.title {
    position: absolute;
    left: 55%;
    transform: translateX(-50%);
    font-size: 24px;
    font-weight: bold;
}

@media (max-width: 1170px) {
    .logo {
        width: 250px;
        height: auto;
    }

    .title {
        font-size: 20px;
        top: 12px; /* push it below logo if needed */
        position: relative;
        transform: none;
        left: auto;
        text-align: center;
        width: 100%;
    }

    .header {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }
}