body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #f4f7fa;
  color: #333;
}
.container {
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
}

h1, h2 {
  color: #1d4ed8;
}

/* Headings */
h1 {
  font-size: 28px !important; /* Slightly larger for stronger emphasis */
  margin-bottom: 10px; /* More breathing room below */
  line-height: 1.5; /* A bit tighter for better readability */
  font-weight: 700 !important; /* Increased weight for clarity */
}

h2 {
  font-size: 24px !important;
  margin-top: 20px !important; /* More space from above */
  margin-bottom: 12px;
  line-height: 1.4;
  font-weight: 600 !important;
  color: #2563eb; /* Soft, approachable blue */
  padding-left: 10px;
  border-left: 3px solid #93c5fd; /* Light blue accent */
  font-family: 'Segoe UI', 'Arial Rounded MT Bold', sans-serif;
  letter-spacing: 0.3px;
}


h3 {
  font-size: 20px !important; /* A bit larger to maintain hierarchy */
  line-height: 1.5;
  font-weight: 500 !important;
  margin-top: 5px !important; /* Slight margin for separation */
}
h4 {
  font-size: 19px !important; /* A bit larger to maintain hierarchy */
  line-height: 1.5;
  font-weight: 500 !important;
  margin-top: 8px; /* Slight margin for separation */
}
/* Paragraphs */
p {
  margin-bottom: 20px; /* Balanced spacing */
  font-size: 18px !important; /* Increased font size for readability */
  line-height: 1.5; /* Slightly increased for better legibility */
  margin-top: 10px !important;
}

/* Lists */
ul {
  margin-left: 8px !important; /* Slightly increased indentation for visual clarity */
}

li {
  margin-bottom: 6px; /* Increased space between list items for better readability */
  font-size: 18px !important; /* Same size as paragraphs for consistency */
}

.note {
  background-color: #e0f0ff;
  padding: 15px;
  border-left: 4px solid #3399ff;
  margin-top: 20px;
  border-radius: 5px;
}
  @media (max-width: 768px) {
    .table-container {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .table-container table {
      min-width: 750px;
    }
  }