/* =====================
   RESET & BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, Arial, Helvetica, sans-serif;
  background: #f6f7fb;
  color: #111;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #2563eb;
}

h1, h2, h3 {
  margin-bottom: 10px;
}

/* =====================
   GLOBAL HEADER
===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.header-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  color: #2563eb;
}

.nav a {
  margin-left: 18px;
  font-weight: 600;
  color: #111;
}

.nav a:hover {
  color: #2563eb;
}

/* =====================
   HERO SECTION
===================== */
.hero {
  background: #eef2ff;
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 32px;
}

.hero p {
  max-width: 720px;
  margin: 12px auto 0;
  color: #475569;
}

/* =====================
   BREADCRUMB
===================== */
.breadcrumb {
  background: #eef2ff;
  padding: 10px 20px;
  font-size: 14px;
}

.breadcrumb a {
  color: #2563eb;
}

/* =====================
   SECTIONS
===================== */
.section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* =====================
   GRID & CARDS
===================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 20px
  margin-bottom: 20px;
}

.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.07);
  transition: transform .25s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card a {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
}

/* =====================
   ADS (AdSense READY)
===================== */
.ad-box {
  max-width: 1000px;
  margin: 30px auto;
  padding: 25px;
  background: #ffffff;
  border: 1px dashed #cbd5f5;
  text-align: center;
  border-radius: 12px;
  color: #555;
}

/* =====================
   BUTTONS (OPTIONAL)
===================== */
.btn-primary {
  background: #2563eb;
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  display: inline-block;
}

.btn-outline {
  border: 2px solid #2563eb;
  color: #2563eb;
  padding: 12px 22px;
  border-radius: 10px;
  display: inline-block;
}

/* =====================
   GLOBAL FOOTER
===================== */
footer.footer {
  background: #111827;
  color: #d1d5db;
  margin-top: 40px;
  padding: 20px;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
}

.footer-inner p {
  font-size: 14px;
  color: #d1d5db;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #9ca3af;
  margin: 0 10px;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.tool-intro {
  max-width: 1100px;
  margin: 30px auto 20px;
  padding: 0 20px;
}

.tool-intro h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.tool-intro h2 {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 8px;
}

.tool-intro p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 10px;
}

.tool-intro ul {
  margin-left: 20px;
  color: #475569;
}

.tool-intro li {
  margin-bottom: 6px;
}

/* =====================================
   UtilityNest – Standard Data Table
   For: Government calendars, holidays,
   notifications, authority pages
===================================== */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

/* Table Head */
table th {
  background: #0f172a; /* matches header/nav */
  color: #e5e7eb;
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
}

/* Table Body */
table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e5e7eb;
  color: #334155;
}

/* Zebra rows for readability */
table tr:nth-child(even) td {
  background: #f8fafc;
}

/* Hover effect (subtle) */
table tr:hover td {
  background: #eef2ff;
}

/* Last row border fix */
table tr:last-child td {
  border-bottom: none;
}

/* Responsive Table */
@media (max-width: 768px) {
  table {
    font-size: 14px;
  }

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

/* Table heading spacing */
h2 + table {
  margin-top: 12px;
}
table td {
  word-break: break-word;
}

