* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  background: #fefafa;
  color: #222;
  line-height: 1.5;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  padding: 14px 20px;
  background: #470000;
  color: #fff;
  font-family: Montserrat, Arial, sans-serif;
}

.toolbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.toolbar a:hover { text-decoration: underline; }

.toolbar .title {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
}

.doc-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 24px 48px;
  background: #fff;
}

.doc-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.doc-content th,
.doc-content td {
  border: 1px solid #ccc;
  padding: 8px 10px;
  vertical-align: top;
}

.doc-content th {
  background: #f3ecec;
}

.doc-content h1,
.doc-content h2 {
  color: #470000;
  font-family: Montserrat, Arial, sans-serif;
}

@media (max-width: 640px) {
  .doc-content { padding: 20px 16px 32px; }
}
