* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
  padding: 20px;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto 16px;
  padding: 0 4px;
  font-size: 14px;
}

.legal-nav a {
  color: #1b6fe0;
  text-decoration: none;
}

.legal-nav a:hover {
  text-decoration: underline;
}

.legal-nav a[aria-current="page"] {
  color: #2c3e50;
  font-weight: 600;
  pointer-events: none;
}

.legal-nav__langs {
  display: flex;
  gap: 14px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 24px;
}

.date-info {
  color: #666;
  font-size: 14px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

h2 {
  color: #34495e;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 20px;
}

h3 {
  color: #34495e;
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 18px;
}

p {
  margin-bottom: 15px;
  text-align: justify;
}

ul {
  margin-bottom: 15px;
  padding-left: 25px;
}

li {
  margin-bottom: 8px;
}

strong {
  font-weight: 600;
}

@media (max-width: 768px) {
  .container {
    padding: 20px;
  }

  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 16px;
  }
}
