html {
    overflow-x: hidden;
}

.top-cta-bar {
  width: 100%;
  background-color: #f5f5f5;
  border-bottom: 1px solid #eee;
  color: #111;
  padding: 12px 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  box-sizing: border-box;
  margin: 0px !important;
}

.top-cta-button {
  background: #444;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.top-cta-button:hover {
  background: #1abc9c;
  color: #fff;
  text-decoration: none;
}

.top-cta-bar,
.top-cta-bar p {
  margin: 0 !important;
}

.top-cta-bar {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  .top-cta-bar {
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
    padding: 12px;
  }

  .top-cta-button {
    width: 100%;
    max-width: 220px;
    text-align: center;
  }
}