/* Typography & Readability */
h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-color);
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

ul, ol {
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

strong {
  color: var(--text-primary);
  font-weight: 600;
}

.intro-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--dark-lighter);
  border-left: 4px solid var(--primary);
  border-radius: var(--border-radius);
}

.update-date {
  font-size: 0.95rem;
  color: var(--text-tertiary);
  margin-bottom: 2rem;
  font-style: italic;
}

.section-divider {
  height: 2px;
  background: var(--border-color);
  margin: 3rem 0;
  opacity: 0.3;
}

/* Table Styling */
.table {
  color: var(--text-primary);
  border-color: var(--border-color);
  margin-bottom: 2rem;
}

.table thead {
  background: var(--dark-card);
  border-bottom: 2px solid var(--border-color);
}

.table tbody tr {
  border-bottom: 1px solid var(--border-color);
}

.table td, .table th {
  padding: 1rem;
  vertical-align: top;
}

section.container {
  padding-top: 100px !important;
}

@media (max-width: 767px) {
  section.container {
    padding-top: 6rem !important;
  }
  h1 {
    font-size: 36px;
    letter-spacing: -1px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 28px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  h3 {
    font-size: 24px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  h4 {
    font-size: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  p {
    font-size: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .table {
    font-size: 14px;
  }

  .table td, .table th {
    padding: 12px 10px;
  }
}