.page-center {
  max-width: 900px;
  margin: auto;
  padding: 0 16px;
}

/* HERO */
.gov-hero {
  background: #0a5c3d;
  color: #fff;
  padding: 48px 0;
}

.gov-hero h2 {
  font-weight: 600;
  margin-bottom: 8px;
}

.gov-hero p {
  font-weight: 400;
  opacity: 0.95;
}

/* CONTENT */
.gov-content {
  padding: 50px 0;
}

.section-title {
  text-align: center;
  font-weight: 500;
  margin-bottom: 28px;
}

/* INFO GRID */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.info-card {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 18px;
}

.info-card.full {
  grid-column: span 2;
}

.label {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
}

.info-card p {
  margin-top: 6px;
  font-weight: 400;
  color: #111827;
}

/* SVG ICONS */
.icon svg,
.c-icon svg {
  width: 22px;
  height: 22px;
  stroke: #0b5d4b;
  fill: none;
  stroke-width: 1.6;
  margin-bottom: 8px;
}

/* GOVERNANCE BOX */
.gov-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 50px;
}

.gov-box h4 {
  font-weight: 600;
  margin-bottom: 8px;
}

.light {
  font-weight: 400;
  color: #4b5563;
}

/* CHECK LIST */
.check-list {
  list-style: none;
  padding-left: 0;
  margin-top: 14px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  font-weight: 400;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0b5d4b;
  font-weight: 600;
}

/* COMPLIANCE */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.compliance-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
}

.compliance-card h5 {
  font-weight: 500;
  color: #0b5d4b;
  margin-bottom: 6px;
}

.compliance-card p {
  font-weight: 400;
  color: #4b5563;
}

/* FOOTER */
.gov-footer {
  background: #e9f8f2;
  padding: 42px 0;
  text-align: center;
}

.gov-footer h4 {
  font-weight: 500;
  margin-bottom: 6px;
}

.gov-footer p {
  font-weight: 400;
  color: #374151;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .info-grid,
  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .info-card.full {
    grid-column: span 1;
  }
}
/* ===== GOVERNANCE PAGE – INSTITUTIONAL ANIMATIONS ===== */

/* Keyframes */
@keyframes govFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes govFocus {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* HERO */
.gov-hero {
  animation: govFadeUp 0.9s ease both;
}

/* SECTION TITLE */
.section-title {
  animation: govFadeUp 0.8s ease both;
}

/* INFO CARDS */
.info-card {
  animation: govFadeUp 0.8s ease both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(11, 93, 75, 0.12);
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.25s; }
.info-card:nth-child(3) { animation-delay: 0.4s; }

/* ICON MICRO-FOCUS */
.icon svg,
.c-icon svg {
  transition: transform 0.35s ease;
}

.info-card:hover .icon svg,
.compliance-card:hover .c-icon svg {
  animation: govFocus 0.8s ease;
}

/* GOVERNANCE BOX */
.gov-box {
  animation: govFadeUp 0.9s ease both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gov-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 93, 75, 0.14);
}

/* CHECK LIST */
.check-list li {
  animation: govFadeUp 0.6s ease both;
  transition: transform 0.25s ease;
}

.check-list li:hover {
  transform: translateX(6px);
}

/* COMPLIANCE CARDS */
.compliance-card {
  animation: govFadeUp 0.8s ease both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compliance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(11, 93, 75, 0.12);
}

.compliance-card:nth-child(1) { animation-delay: 0.15s; }
.compliance-card:nth-child(2) { animation-delay: 0.3s; }

/* FOOTER */
.gov-footer {
  animation: govFadeUp 1s ease both;
}
.page-center {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}
@media (min-width: 1920px) {
  .page-center {
    max-width: 1400px;
  }
}
img {
  max-width: 100%;
  height: auto;
}
.gov-hero h2,
.gov-hero .breadcrumb {
  color: #ffffff;
}
.gov-hero p {
  color: #ffffff;
}
