.om-page {
  max-width: 980px;
  margin: 0 auto;
}

.om-hero-box {
  max-width: 760px;
  margin: 0 auto 24px;
  padding: 26px;
  background: #121212;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  text-align: center;
}

.om-hero-box h1 {
  margin: 0 0 12px;
  color: #ffffff;
}

.om-hero-box p {
  margin: 0;
  color: rgba(255,255,255,0.84);
  line-height: 1.7;
  font-size: 15px;
}

.section-nav.om-tabs {
  position: sticky;
  top: 118px;
  z-index: 100;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto 20px;
  padding: 10px;
  background: rgba(11,11,11,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.section-nav.om-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #121212;
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  opacity: 0.9;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: Arial, sans-serif;
  font-weight: 400;
  letter-spacing: normal;
  margin: 0;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.section-nav.om-tabs button:hover {
  border-color: rgba(255,255,255,0.2);
  opacity: 1;
}

.section-nav.om-tabs button.is-active {
  background: rgba(182,146,76,0.16);
  border-color: rgba(182,146,76,0.38);
  opacity: 1;
}

.om-panel-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.om-panel {
  display: none;
  padding: 24px 26px;
  background: #121212;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
}

.om-panel.is-active {
  display: block;
}

.om-panel h2 {
  margin: 0 0 18px;
  color: #ffffff;
}

.om-panel h3 {
  margin: 24px 0 12px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.om-panel p {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  font-size: 15px;
}

.om-panel p:last-child {
  margin-bottom: 0;
}

.fakta-hero {
  margin: 0 0 22px;
  padding: 8px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: #0f0f0f;
}

.fakta-hero .fakta-hero-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  object-position: center center;
  margin: 0 auto;
}

.fakta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #121212;
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 14px;
  line-height: 1;
  opacity: 0.92;
  transition: border-color 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.link-pill:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(182,146,76,0.10);
  opacity: 1;
}

@media (max-width: 768px) {
  .om-page {
    padding: 0 10px;
  }

  .om-hero-box,
  .om-panel {
    padding: 16px;
  }

  .om-hero-box p,
  .om-panel p {
    font-size: 14px;
    line-height: 1.65;
  }

  .section-nav.om-tabs {
    top: 92px;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px;
    border-radius: 18px;
  }

  .section-nav.om-tabs button {
    min-height: 36px;
    font-size: 13px;
    padding: 9px 12px;
  }

  .fakta-hero {
    padding: 6px;
    margin: 0 0 16px;
  }

  .fakta-hero .fakta-hero-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 140px;
    max-height: 140px;
    min-height: 140px;
    object-fit: contain;
    object-position: center center;
    margin: 0 auto;
  }

  .fakta-links {
    flex-direction: column;
    align-items: stretch;
  }

  .link-pill {
    justify-content: center;
  }
}