:root{
  --container: 1200px;
  --container-wide: 1280px;

  --text: #111827;
  --muted: #6b7280;
  --bg: #ffffff;

  --warning: #f59e0b;
  --danger: #dc2626;

  --primary-bg: #f3f4f6;       /* “frame-background-primary” style */
  --border: rgba(17,24,39,.14);
  --border-strong: rgba(17,24,39,.20);

  --radius: 12px;
  --shadow: 0 10px 26px rgba(0,0,0,.08);
}

*{ box-sizing: border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}


.frame-background-primary {
background: #FF7D00;
    background-image: none;
    background-size: auto;
  background-image: url("https://www.woerwagpharma-leaflet.com/fileadmin/lagosa/bgd-lagosa.png");
  background-size: cover;
  color:#111827;
  padding:30px !important;
}


.frame-container .frame-inner {
  margin-left: 0%;
  margin-right: 0%;
}
.frame-container .frame-inner {
  width: 100%;
}

img{ display:block; max-width:100%; height:auto; }
a{ color: inherit; }
a:hover{ text-decoration: none; }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

.container{
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}
.container--wide{
  width: min(var(--container-wide), calc(100% - 32px));
  margin-inline: auto;
}

.section{ padding: 12px 0 28px; }
.main-section{ padding: 0 0 40px; }
.body-bg{ min-height: 100%; }

/* Top legal nav */
.nav-top{ padding: 14px 0 10px; }
.nav-top__inner{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}
.nav-top small{ font-size: 12px; color: var(--muted); }
.nav-top a{ text-decoration: none; }
.nav-top a:hover{ text-decoration: underline; }
.sep{ opacity: .7; }

.linklike{
  border:0;
  padding:0;
  background: transparent;
  cursor: pointer;
  color: inherit;
}

/* Typography */
.prose{
  font-size: 16px;
  line-height: 1.65;
}
.prose p{ margin: 0 0 12px; }
.prose h2{
  margin: 14px 0 10px;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.muted{ color: var(--muted); }

/* Accent heading like “text-warning text-danger” combination */
.h2-accent{
  color: var(--danger);
}
.h2-accent strong{ font-weight: 800; }

/* Images */
.image{
  margin: 18px 0;
}
.image--full{
  margin: 14px 0 10px;
}
.image img{
  border-radius: 10px;
}

/* Icon rows */
.icon-row{
  display:flex;
  gap: 20px;
  align-items:center;
  justify-content:flex-start;
  flex-wrap: wrap;
  margin: 8px 0 18px;
}
.icon-row--center{
  justify-content:center;
}
.icon{
  margin: 0;
}
.icon img{
  max-width: 132px;
}
.icon--logo img{
  max-width: 110px;
}

/* Buttons (minimal Bootstrap-like) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  user-select: none;
}
.btn:hover{ filter: brightness(0.98); }
.btn-danger{
  background: var(--danger);
  color: #fff;
  border-color: var(--danger);
}

/* Callouts (frame-background-primary) */
.callout{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 16px;
  box-shadow: var(--shadow);
}
.callout--primary{
  background: var(--primary-bg);
}

/* Two-column block */
.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
  margin: 10px 0 18px;
}

/* Tables */
.table-responsive{
  overflow:auto;
  margin-top: 12px;
  border-radius: 10px;
}
.table{
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  background: transparent;
}
.table th, .table td{
  padding: 12px 12px;
  border: 1px solid var(--border-strong);
  vertical-align: top;
  text-align: left;
}
.table th{
  background: #f9fafb;
  font-weight: 800;
}
.table td{
  font-size: 14px;
  line-height: 1.55;
}

/* References */
.refs small{ font-size: 12px; color: var(--muted); }
.refs__block{ margin-top: 10px; }

/* Fixed language menu */
.language-menu{
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  list-style: none;
  padding: 8px;
  margin: 0;
  display: grid;
  gap: 6px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 50;
}
.language-menu a{
  display:block;
  min-width: 44px;
  text-align:center;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .02em;
}
.language-menu li.active a{
  background: rgba(245, 158, 11, .18);
  border: 1px solid rgba(245, 158, 11, .40);
}

/* Responsive */
@media (max-width: 920px){
  .two-col{ grid-template-columns: 1fr; }
  .nav-top__inner{ justify-content: center; }
}
