/* Simple styles for agreement pages */
body {
  font-family: "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  margin: 20px 0 10px 0;
  color: #2c3e50;
}

h1 { font-size: 24px; text-align: center; }
h2 { font-size: 20px; }
h3 { font-size: 18px; }
h4 { font-size: 16px; }
h5 { font-size: 14px; }
h6 { font-size: 14px; font-weight: bold; }

p {
  margin: 10px 0;
  text-align: justify;
}

ol, ul {
  padding-left: 30px;
  margin: 10px 0;
}

li {
  margin: 5px 0;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
}

table th, table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

table th {
  background-color: #f5f5f5;
  font-weight: bold;
}

a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.highlight {
  background-color: #ffffcc;
  padding: 2px 4px;
}

/* Mobile responsive */
@media (max-width: 600px) {
  body {
    padding: 15px;
    font-size: 14px;
  }
  
  h1 { font-size: 20px; }
  h2 { font-size: 18px; }
  h3 { font-size: 16px; }
}