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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.page-wrapper {
  max-width: 820px;
  margin: 0 auto;
  background-color: #fff;
  min-height: 100vh;
  padding: 40px 60px 80px;
}

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

.logo-container img {
  height: 60px;
  width: auto;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.last-updated {
  font-size: 14px;
  color: #888;
  margin-bottom: 36px;
}

h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 32px;
  margin-bottom: 12px;
}

h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 24px;
  margin-bottom: 8px;
}

p {
  font-size: 15px;
  color: #444;
  margin-bottom: 12px;
  text-align: justify;
}

ul {
  margin: 8px 0 16px 24px;
  font-size: 15px;
  color: #444;
}

ul li {
  margin-bottom: 6px;
}

ul li strong {
  color: #333;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.contact-card {
  background-color: #f5f7fa;
  border: 1px solid #e2e6ea;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 16px 0 0;
}

.contact-card strong {
  display: block;
  font-size: 15px;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.contact-card span {
  display: block;
  font-size: 15px;
  color: #444;
  line-height: 1.8;
}

.page-footer {
  border-top: 1px solid #e2e6ea;
  margin-top: 48px;
  padding-top: 32px;
  text-align: center;
}

.page-footer nav {
  margin-bottom: 16px;
}

.page-footer nav a {
  font-size: 15px;
  color: #546e7a;
  text-decoration: none;
  margin: 0 20px;
}

.page-footer nav a:hover {
  color: #1a1a1a;
  text-decoration: underline;
}

.page-footer .copyright {
  font-size: 14px;
  color: #546e7a;
  text-align: center;
}

@media (max-width: 768px) {
  .page-wrapper {
    padding: 24px 20px 60px;
  }

  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 18px;
  }
}
