:root {
  --yellow: #ffd200;
  --black: #000000;
  --white: #ffffff;
  --bg-soft: #f8f8f8;
  --text-main: #111111;
  --text-muted: #555555;
  --border-soft: #e3e3e3;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text-main);
  background: #ffffff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.top-strip {
  background: var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
}

.top-strip-inner {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

