:root {
  --blue-dark: #17384f;
  --blue: #25607f;
  --blue-light: #e8f2f7;
  --green: #3f7d5a;
  --gold: #c89b3c;
  --text: #24313a;
  --muted: #65727c;
  --bg: #f6f8fa;
  --white: #ffffff;
  --border: #d9e2e8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

header {
  background: var(--blue-dark);
  color: var(--white);
  padding: 28px 0 18px;
}

header h1 {
  margin: 0;
  font-size: 2.4rem;
  letter-spacing: 0.5px;
}

.tagline {
  margin: 6px 0 18px;
  color: #dcebf2;
  font-size: 1.05rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

nav a {
  color: var(--white);
  text-decoration: none;
  background: rgba(255,255,255,0.12);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
}

nav a:hover {
  background: rgba(255,255,255,0.24);
}

.hero {
  background: linear-gradient(135deg, var(--blue-light), var(--white));
  padding: 54px 0;
  border-bottom: 1px solid var(--border);
}

.hero h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--blue-dark);
}

.hero p {
  max-width: 800px;
  font-size: 1.18rem;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
}

.button:hover {
  background: var(--blue-dark);
}

section {
  padding: 42px 0;
}

section h2 {
  color: var(--blue-dark);
  font-size: 2rem;
  margin-top: 0;
}

section h3 {
  color: var(--blue-dark);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  margin: 18px 0;
  box-shadow: 0 8px 22px rgba(23,56,79,0.07);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

ul,
ol {
  padding-left: 1.4rem;
}

li {
  margin-bottom: 6px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

th {
  background: var(--blue-light);
  color: var(--blue-dark);
}

footer {
  background: var(--blue-dark);
  color: var(--white);
  padding: 34px 0;
  margin-top: 30px;
}

footer p {
  color: #dcebf2;
  margin: 6px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 28px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 24px;
  padding-top: 18px;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  header h1 {
    font-size: 2rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  nav {
    gap: 8px;
  }

  nav a {
    font-size: 0.88rem;
  }
  .content-section {
  padding: 56px 0;
}

.dashboard-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card-grid {
  grid-template-columns: repeat(2, 1fr);
}

.status-card,
.info-card {
  background: #ffffff;
  border: 1px solid #e2d8c8;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(16, 36, 59, 0.08);
}

.status-card strong {
  display: block;
  font-size: 2.4rem;
  color: #10243b;
  line-height: 1;
  margin-bottom: 10px;
}

.status-card span {
  color: #5f6874;
  font-weight: 700;
}

.info-card h3 {
  margin-top: 0;
  color: #10243b;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a3772c;
  font-weight: 800;
  font-size: 0.85rem;
}

.tac-section {
  background: #fbf6ea;
  border-top: 1px solid #e2d8c8;
  border-bottom: 1px solid #e2d8c8;
}

@media (max-width: 900px) {
  .dashboard-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }
}
/* --------------------------------------------------
   CivicWorks Craftsmanship Improvements
---------------------------------------------------*/

.hero{
    padding:70px 0;
}

.hero h2{
    max-width:850px;
    margin:0 auto 20px;
    line-height:1.25;
}

.hero p{
    max-width:900px;
    margin:0 auto;
    font-size:1.15rem;
    line-height:1.8;
}

.card{
    border-radius:14px;
    padding:28px;
    margin-bottom:30px;
    transition:.2s ease;
}

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

.card h2{
    margin-top:0;
}

blockquote{
    border-left:5px solid #0A2850;
    padding-left:20px;
    margin:25px 0;
    font-style:italic;
    color:#555;
}

.button{
    display:inline-block;
    margin:8px 8px 8px 0;
}

table{
    width:100%;
    border-collapse:collapse;
}

th{
    text-align:left;
}

td,
th{
    padding:12px;
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
}

.info-card{
    border:1px solid #ddd;
    border-radius:10px;
    padding:20px;
    transition:.2s;
}

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