/* style.css */
:root {
  --primary-color: #2563eb;
  --text-main: #1f2937;
  --text-muted: #4b5563;
  --bg-body: #f3f4f6;
  --bg-card: #ffffff;
  --border-color: #e5e7eb;
}

.top-spacer {
  height: 20px;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  background-color: var(--bg-body);
  color: var(--text-main);
  margin: 0;
  padding: 50px 15px;
  font-size: 13px;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
  padding-top: 35px;
  margin-bottom: 25px;
}

h1 {
  font-size: 1.6rem; /* टायटल लहान केलं */
  font-weight: 700;
  margin: 0;
  color: #111;
  letter-spacing: -0.01em;
}

.last-updated {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 5px;
}

.intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}

section { margin-bottom: 20px; }

h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

h2::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 16px;
  background-color: var(--primary-color);
  margin-right: 8px;
  border-radius: 1px;
}

p { margin-bottom: 10px; }

ul { list-style-type: none; padding-left: 0; margin: 0; }

li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1rem;
}

.contact-box {
  background-color: #f8fafc;
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  margin-top: 30px;
  border-radius: 4px;
  font-size: 0.85rem;
}

strong { color: #111; }

.highlight-text {
  color: #111;
  font-weight: 600;
  border-bottom: 1px dashed var(--primary-color);
}

@media (max-width: 600px) {
  .container { padding: 20px 15px; }
  h1 { font-size: 1.4rem; }
  body { font-size: 12px; }
}
