/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
  line-height: 1.6;
}

/* Container */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

/* Card Styling */
/* Card Styling */
.card {
  background-color: white;
  padding: 40px;
  max-width: 1000px; /* increased from 900px */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}


/* Heading */
.card h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Blue underline */
.blue-line {
  border: none;
  height: 3px;
  width: 100%;
  background-color: #00aaff;
  margin: 10px 0 30px;
}

/* Paragraphs */
.card p {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* List */
.card ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.card li {
  margin-bottom: 10px;
}

/* Bold */
.card strong {
  font-weight: 600;
}












/* Section Divider */
.section-divider {
  margin: 40px 0 20px;
  border: none;
  height: 1px;
  background-color: #e5e7eb;
}

/* Summary Heading */
.summary-heading {
  color: #0099ff;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Summary Intro */
.summary-intro {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

/* Summary Box */
.summary-box {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Summary Items */
.summary-item {
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 0;
  font-size: 1rem;
  color: #111827;
}

.summary-item.bottom {
  border-bottom: none;
}

/* Links */
.summary-box a {
  color: #2563eb;
  text-decoration: underline;
}













/* TOC Heading */
.toc-heading {
  color: #0099ff;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* TOC Box */
.toc-box {
  background-color: #f9fafb;
  border-left: 4px solid #00aaff;
  border-radius: 8px;
  padding: 20px;
}

/* TOC List */
.toc-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.toc-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.toc-list a {
  color: #1d4ed8;
  text-decoration: none;
}

.toc-list a:hover {
  text-decoration: underline;
}









/* Section Title */
.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

/* Optional: smaller headings */
.card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}

.card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
}


















.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.blue-line {
  border: none;
  height: 2px;
  background-color: #00aaff;
  margin: 10px 0 20px;
}

.section-divider {
  margin: 40px 0 20px;
  border: none;
  height: 1px;
  background-color: #e5e7eb;
}





html {
  scroll-behavior: smooth;
}






























