.header-section {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.top-bar {
    background-color: #E88597;
    color: #ffffff;
    padding: 8px 15px;
    text-align: center;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.top-bar span {
    margin: 0;
    padding: 0;
}

.timer-text {
    font-weight: 700;
}

.logo-wrapper {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    background-color: #fff;
}

.logo-wrapper img {
    max-width: 260px;
    height: auto;
    display: inline-block;
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 14px;
        padding: 8px 10px;
    }

    .logo-wrapper img {
        max-width: 200px;
    }
}