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

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: #ecedee;
  background-color: #151718;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #1a1d1e;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #2c2f30;
}

h1 {
  font-size: 28px;
  font-weight: 500;
  color: #ecedee;
  margin-bottom: 12px;
  line-height: 1.3;
}

.last-updated {
  font-size: 14px;
  color: #9ba1a6;
  margin-bottom: 32px;
  font-weight: 400;
}

.intro {
  font-size: 16px;
  color: #ecedee;
  margin-bottom: 32px;
  line-height: 1.7;
}

h2 {
  font-size: 20px;
  font-weight: 500;
  color: #ecedee;
  margin-top: 32px;
  margin-bottom: 16px;
}

p {
  font-size: 15px;
  color: #ecedee;
  margin-bottom: 16px;
  line-height: 1.7;
}

ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

li {
  font-size: 15px;
  color: #ecedee;
  margin-bottom: 12px;
  line-height: 1.7;
}

strong {
  font-weight: 500;
  color: #ecedee;
}

a {
  color: #5cc8ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.contact-email {
  color: #5cc8ff;
  font-weight: 400;
}

@media (max-width: 768px) {
  body {
    padding: 12px;
  }

  .container {
    padding: 24px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 18px;
  }
}
