/* Globals */
* {
  box-sizing: border-box;
}

.section {
  margin-bottom: 8px;
}

.inner {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 30px 20px;
}

.section-title {
  font-size: 32px;
  font-weight: var(--weight-bold);
  margin-bottom: 16px;
  line-height: 1.05;
}

.group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Legal-information */

.item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 6px;
  background: var(--color-light-gray);
  border-radius: 12px;
}

.item-title {
  font-size: 16px;
  font-weight: 600;
}

.item-img {
  opacity: 0.5;
}