* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f8fafc;
  color: #0f172a;
}
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.topbar a {
  color: #0f766e;
  text-decoration: none;
  font-weight: 600;
}
.info {
  font-size: 0.95rem;
  color: #334155;
  margin: 0 0 12px;
}
.iframe-wrap {
  border: 1px solid #dbeafe;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.legal-iframe {
  width: 100%;
  height: calc(100vh - 190px);
  min-height: 620px;
  border: 0;
}
.fallback {
  margin-top: 12px;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .legal-iframe {
    height: calc(100vh - 220px);
    min-height: 540px;
  }
}
