/* Add custom CSS styles below */ 
.announcement-bar {
  width: 100%;
  background: #2c3e50;
  color: #ecf0f1;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}

.marquee-container {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-content {
  padding-right: 50px;
  font-size: 16px;
  font-weight: 400;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Add multiple items for continuous effect */
.marquee-container .marquee-content {
  display: flex;
  gap: 30px;
}

.marquee-container .marquee-content span {
  margin: 0 20px;
}