.info-bar-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: none; /* Hide initially to prevent flickering */
}

#header {
    position: relative;
}

#menu-section {
    position: absolute;
    top: 50px;
    padding: 25px;
    left: 0;
    right: 0;
}
.info-bar {
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-bar-content {
    flex: 1;
    text-align: center;
}
.info-bar-content a
{
	color:#fff;
}

.info-title {
    font-size: 18px;
    font-weight: bold;
}



.info-close {
background: none;
  border: none;
  color: inherit;
  font-size: 42px;
  cursor: pointer;
  padding: 2px;
  min-width: 20px;
  box-shadow: none;
}
@media (max-width: 768px) {
    .info-bar {
        font-size: 14px;
        padding: 8px;
    }
}