/* Dragger Legal Documents — shared styles for dual-language pages */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

html, body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: #000000;
  line-height: 1.5;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px 24px;
}

.header {
  text-align: center;
  margin-bottom: 40px;
}

.icon-bg {
  width: 60px;
  height: 60px;
  background-image: url("../icon.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 8px;
  margin: 0 auto 20px auto;
}

h1 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px 0;
}

.section-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 28px;
  align-items: start;
}

@media (max-width: 768px) {
  .section-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.section-heading {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section p {
  margin: 8px 0;
}

.section ul {
  margin: 4px 0 8px 0;
  padding-left: 20px;
}

.section ol {
  margin: 4px 0 8px 0;
  padding-left: 20px;
}

.section li {
  margin-bottom: 4px;
}

.preamble p {
  margin: 4px 0;
}