:root {
  --font-increase: 0px;
  --font-decrease: 0px;
  --primary-bg: #1f66d1;
  --primary-dark: #123f91;
  --secondary-bg: #1bb7d6;
  --accent-bg: #f3a71b;
  --accent-alt: #ff6d4b;
  --surface-glass: rgba(255, 255, 255, .88);
  --surface-warm: rgba(255, 249, 235, .86);
  --surface-cool: rgba(236, 249, 252, .86);
  --blue-bg: #082f68;
  --gray-bg: #eaf1fb;
  --light-gray-bg: #f6f9fe;
  --primary-text: #174eaa;
  --secondary-text: #0f96b7;
  --text-white: #ffffff;
  --text-bold-dark: #13223a;
  --gray-text: #58677d;
  --border-soft: #dce7f6;
  --shadow-soft: 0 18px 40px rgba(17, 55, 116, .12);
  --brand-gradient: linear-gradient(135deg, #0f4abd 0%, #13bfde 100%);
  --brand-gradient-strong: linear-gradient(135deg, #0d3f78 0%, #1f72d5 100%);
  --card-gradient: linear-gradient(180deg, rgba(255,255,255,.96), rgba(237, 248, 255, .92));
}

* {
  box-sizing: border-box;
}

::selection {
  background: rgba(15, 74, 189, .18);
}

html,
body {
  font-size: calc(16px + var(--font-increase) - var(--font-decrease));
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans", sans-serif;
  color: var(--text-bold-dark);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-image: 
    linear-gradient(180deg, rgba(245, 249, 255, .74), rgba(224, 235, 249, .64)),
    linear-gradient(135deg, rgba(15, 74, 189, .08), rgba(5, 150, 213, .05)),
    url("../images/nature.PNG");
  background-repeat: no-repeat;
  min-height: 100vh;
}

body.font-small {
  --font-decrease: 2px;
}

body.font-large {
  --font-increase: 2px;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.padding-80px {
  padding-left: 80px;
  padding-right: 80px;
}

.section-divider {
  padding-top: 64px;
  padding-bottom: 56px;
}

.top-strip {
  background: rgba(255, 255, 255, .92);
  font-size: calc(13px + var(--font-increase) - var(--font-decrease));
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1000;
  overflow: visible;
}

.top-strip a {
  text-decoration: none;
  color: #243957;
}

.top-strip-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
}

.line-divider {
  width: 1px;
  height: 35px;
  background: #ccd9ea;
  display: inline-block;
}

.material-symbols-outlined {
  font-size: calc(20px + var(--font-increase) - var(--font-decrease));
  vertical-align: middle;
}

.search-wrap {
  width: min(300px, 100vw);
  position: relative;
  z-index: 1002;
}

.search-wrap .form-control {
  min-height: 38px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  font-size: calc(14px + var(--font-increase) - var(--font-decrease));
  background: #fff;
}

.search-results {
  position: absolute;
  top: 100%;
  left: 8px;
  right: 8px;
  background: #fff;
  border: 1px solid var(--border-soft);
  z-index: 1003;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  box-shadow: var(--shadow-soft);
}

.search-results a,
.search-results span {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--text-bold-dark);
  font-size: calc(14px + var(--font-increase) - var(--font-decrease));
}

.search-results strong,
.search-results small {
  display: block;
}

.search-results small {
  color: var(--gray-text);
  margin-top: 3px;
  line-height: 1.35;
}

.search-results a:hover {
  background: #f5f5f5;
}

.text-btn {
  border: 0;
  background: transparent;
  padding: 0 2px;
  cursor: pointer;
  min-width: 30px;
  min-height: 30px;
  border-radius: 6px;
}

.text-btn[aria-pressed="true"] {
  background: rgba(23, 78, 170, .1);
}

.green-text {
  color: var(--primary-text);
}

.main-header {
  background:
    linear-gradient(90deg, rgba(255,255,255,.94), rgba(246,249,254,.82)),
    radial-gradient(circle at 100% 0, rgba(67, 141, 237, .14), transparent 38%);
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
  z-index: 100;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text-bold-dark);
  min-width: 260px;
  max-width: 760px;
}

.brand-lockup img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(31, 102, 209, .22);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 14px 34px rgba(31, 102, 209, .14);
}

.brand-lockup strong {
  display: block;
  font-size: clamp(calc(20px + var(--font-increase) - var(--font-decrease)), 2.4vw, calc(32px + var(--font-increase) - var(--font-decrease)));
  line-height: 1.18;
  color: var(--blue-bg);
  font-weight: 800;
}

.brand-lockup small {
  display: block;
  margin-top: 8px;
  color: var(--gray-text);
  font-size: calc(14px + var(--font-increase) - var(--font-decrease));
  letter-spacing: .01em;
}

.gov-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-dark);
  font-weight: 700;
  border-left: 1px solid var(--border-soft);
  padding-left: 20px;
}

.gov-mark .material-symbols-outlined {
  font-size: calc(34px + var(--font-increase) - var(--font-decrease));
}

.common-btn {
  padding: 14px 24px;
  border-radius: 28px;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  transition: .3s ease, transform .2s ease;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.common-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(255,255,255,.15), rgba(255,255,255,.05));
  opacity: 0;
  transition: opacity .3s ease;
}

.common-btn:hover::before {
  opacity: 1;
}

.green-btn {
  background: linear-gradient(135deg, #0766cc 0%, #2f7bf3 100%);
  color: var(--text-white);
  box-shadow: 0 14px 38px rgba(13, 67, 163, .18);
}

.green-btn:hover {
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(135deg, #0f7ee0 0%, #4276e8 100%);
  color: var(--text-white);
  box-shadow: 0 18px 48px rgba(13, 67, 163, .28);
}

.white-btn {
  background: rgba(255,255,255,.98);
  color: var(--primary-text);
  border-color: rgba(31, 102, 209, .18);
  box-shadow: 0 10px 24px rgba(95, 115, 164, .08);
}

.white-btn:hover,
.btn-outline-green:hover {
  background: var(--primary-bg);
  color: #fff;
}

.btn-outline-green {
  color: var(--primary-text);
  border-color: var(--primary-bg);
  background: rgba(255,255,255,.9);
}

.green-nav {
  background: linear-gradient(90deg, #0d3b82, #1768c3);
  min-height: 62px;
  box-shadow: 0 18px 48px rgba(8, 47, 104, .16);
  position: relative;
  z-index: 90;
}

.green-nav .nav-link {
  color: var(--text-white) !important;
  padding: 14px 18px !important;
  font-size: calc(14px + var(--font-increase) - var(--font-decrease));
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 999px;
  margin: 4px 4px;
}

.green-nav .nav-link:hover,
.green-nav .nav-link.active {
  background: rgba(255, 255, 255, .15);
}

.dropdown-toggle::after {
  display: none;
}

.green-nav .dropdown-menu {
  font-size: calc(14px + var(--font-increase) - var(--font-decrease));
  border: 0;
  border-radius: 0 0 12px 12px;
  margin-top: 0;
  padding: 0;
  box-shadow: var(--shadow-soft);
}

.green-nav .dropdown-item {
  color: var(--primary-text);
  border-bottom: 1px solid var(--border-soft);
  padding: 11px 14px;
}

.green-nav .rti-dropdown-menu {
  min-width: 230px;
}

.green-nav .rti-pio-info {
  white-space: normal;
  cursor: default;
  opacity: 1;
}

.green-nav .rti-pio-info strong,
.green-nav .rti-pio-info span {
  display: block;
}

.green-nav .rti-pio-info strong {
  color: var(--primary-bg);
  font-size: calc(12px + var(--font-increase) - var(--font-decrease));
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 3px;
}

.green-nav .rti-pio-info span {
  color: var(--primary-text);
}

.custom-toggler {
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 8px;
  width: 46px;
  height: 42px;
  padding: 9px 10px;
  display: grid;
  align-content: center;
  gap: 5px;
  background: rgba(255, 255, 255, .12);
}

.custom-toggler:focus {
  box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .24);
}

.custom-toggler span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: #fff;
}

.announcement-bar {
  background: linear-gradient(90deg, rgba(255,255,255,.94), rgba(239, 248, 255, .96));
  height: 58px;
  overflow: hidden;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 16px 35px rgba(18, 47, 93, .12);
  border: 1px solid rgba(22, 93, 166, .14);
}

.announcement-title {
  background: linear-gradient(135deg, #0f4abd, #0ab9d9);
  color: #fff;
  font-weight: 800;
  padding: 0 24px 0 72px;
  height: 58px;
  display: flex;
  align-items: center;
  font-size: calc(16px + var(--font-increase) - var(--font-decrease));
  letter-spacing: .02em;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker-track.paused {
  animation-play-state: paused;
}

.ticker-track a {
  text-decoration: none;
  background: linear-gradient(90deg, #9b111e 0%, #ff2b2b 35%, #c40018 70%, #ff6b4a 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  white-space: nowrap;
  font-size: calc(15px + var(--font-increase) - var(--font-decrease));
  letter-spacing: .5px;
  transition: all .3s ease;
  position: relative;
  padding: 0 4px 0 24px;
  animation: notificationGradient 3.8s ease-in-out infinite;
}

.ticker-track a::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff1f1f, #b80015 55%, #ff745c);
  box-shadow: 0 0 0 4px rgba(255, 43, 43, .14), 0 0 14px rgba(196, 0, 24, .42);
  transform: translateY(-50%);
  animation: notificationBulletPulse 1.8s ease-in-out infinite;
}

.ticker-track a:hover {
  filter: brightness(1.2);
  transform: translateY(-1px);
}

.btn-control {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(22, 93, 166, .16);
  border-radius: 999px;
  color: var(--secondary-text);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 30px 90px rgba(0, 49, 116, .18);
  }
  50% {
    box-shadow: 0 30px 90px rgba(0, 49, 116, .28);
  }
}

@keyframes notificationGradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes notificationBulletPulse {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(255, 43, 43, .14), 0 0 14px rgba(196, 0, 24, .42);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(255, 43, 43, .08), 0 0 22px rgba(255, 31, 31, .6);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-section {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 74, 189, .35), rgba(5, 150, 213, .25)),
    linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,0)),
    url("../images/nature.PNG") center center / cover no-repeat;
  background-attachment: fixed;
  border-radius: 0;
  margin: 40px 0 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp .8s ease-out;
}

.hero-media {
  display: none;
}

.hero-content {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 80px 80px;
}

.hero-copy {
  max-width: 880px;
  text-align: center;
  animation: slideInLeft .8s ease-out .2s backwards;
}

.hero-copy .head-deco {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: rgba(255,255,255,.95);
  font-weight: 700;
  letter-spacing: .08em;
  font-size: calc(13px + var(--font-increase) - var(--font-decrease));
  text-transform: uppercase;
}

.hero-copy .head-deco::after {
  display: none;
}

.hero-copy h1 {
  font-size: clamp(calc(48px + var(--font-increase) - var(--font-decrease)), 6vw, calc(72px + var(--font-increase) - var(--font-decrease)));
  line-height: 1.05;
  margin: 24px 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: -.03em;
  text-shadow: 0 12px 32px rgba(0, 30, 80, .3);
}

.hero-copy p {
  font-size: calc(21px + var(--font-increase) - var(--font-decrease));
  line-height: 1.8;
  color: rgba(255,255,255,.95);
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 4px 12px rgba(0, 30, 80, .2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
}

.quick-section {
  margin-top: -64px;
  position: relative;
  z-index: 2;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.quick-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 110px;
  padding: 24px;
  border-radius: 28px;
  color: #fff;
  text-decoration: none;
  font-size: calc(18px + var(--font-increase) - var(--font-decrease));
  font-weight: 800;
  box-shadow: 0 24px 48px rgba(15, 70, 136, .12);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
  position: relative;
  overflow: hidden;
}

.quick-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.25), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity .35s ease;
}

.quick-box:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 36px 72px rgba(15, 70, 136, .24);
  background: rgba(255,255,255,.18);
}

.quick-box:hover::before {
  opacity: 1;
}

.green-gradient { background: linear-gradient(135deg, #1043aa 0%, #2660db 100%); }
.blue-gradient { background: linear-gradient(135deg, #0a3f67 0%, #1d72d1 100%); }
.orange-gradient { background: linear-gradient(135deg, #0f96b7 0%, #58cfe5 100%); }
.yellow-gradient { background: linear-gradient(135deg, #f0a72f 0%, #f7ca63 100%); }

.light-gray-bg { background: rgba(236, 249, 252, .38); }
.blue-bg { background: var(--blue-bg); }

.about-section,
.section-divider.light-gray-bg {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(232, 248, 252, .42)),
    rgba(255, 255, 255, .26);
  backdrop-filter: blur(8px);
  border-radius: 32px;
  box-shadow: 0 26px 65px rgba(10, 38, 88, .07);
  border: 1px solid rgba(255, 255, 255, .42);
  animation: fadeInUp .6s ease-out .1s backwards;
}

main > .section-divider:not(.about-section):not(.light-gray-bg):not(.page-hero) {
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(5px);
}

.page-hero,
.pdf-hero {
  background: linear-gradient(135deg, rgba(255, 255, 255, .42), rgba(225, 244, 250, .2));
  backdrop-filter: blur(4px);
}

#current-leadership.section-divider.light-gray-bg {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .46), rgba(226, 246, 252, .22)),
    rgba(255, 255, 255, .12);
}

.leadership-current-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.leader-card {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  align-items: start;
  min-height: 190px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(31, 102, 209, .14);
  box-shadow: 0 22px 54px rgba(15, 56, 107, .08);
  backdrop-filter: blur(10px);
}

.leader-card > .material-symbols-outlined {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(15, 72, 173, .12);
  color: #1045a8;
  font-size: calc(34px + var(--font-increase) - var(--font-decrease));
}

.leader-card small {
  display: block;
  color: var(--secondary-text);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.leader-card h3 {
  margin: 0 0 8px;
  color: var(--blue-bg);
  font-size: calc(23px + var(--font-increase) - var(--font-decrease));
  font-weight: 900;
}

.leader-card p {
  margin: 0 0 16px;
  color: var(--gray-text);
}

.leader-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-text);
  font-weight: 800;
  text-decoration: none;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 52px;
  align-items: stretch;
}

.about-left h2,
.section-title-row h2,
.contact-feedback-grid h2,
.page-hero h1 {
  font-size: clamp(calc(32px + var(--font-increase) - var(--font-decrease)), 4vw, calc(46px + var(--font-increase) - var(--font-decrease)));
  color: var(--blue-bg);
  font-weight: 900;
  margin: 14px 0;
}

.about-text {
  color: var(--gray-text);
  line-height: 1.95;
  font-size: calc(18px + var(--font-increase) - var(--font-decrease));
}

.about-highlight {
  margin: 24px 0 0;
  padding: 20px 22px;
  border-left: 5px solid var(--primary-text);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 247, 232, .96), rgba(239, 248, 255, .9));
  color: var(--text-bold-dark);
  font-size: calc(18px + var(--font-increase) - var(--font-decrease));
  font-weight: 800;
  line-height: 1.75;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.stat-box {
  display: block;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 20px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(244,248,255,.9));
  box-shadow: 0 18px 45px rgba(22, 71, 129, .08);
  backdrop-filter: blur(10px);
  transition: all .35s ease;
  animation: fadeInUp .6s ease-out .15s backwards;
  text-decoration: none;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(22, 71, 129, .14);
  border-color: rgba(31, 102, 209, .18);
}

.stat-box strong {
  display: block;
  font-size: calc(28px + var(--font-increase) - var(--font-decrease));
  color: var(--text-bold-dark);
}

.stat-box span {
  color: var(--gray-text);
}

.tax-registration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tax-registration-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(31, 102, 209, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 45px rgba(22, 71, 129, .08);
}

.tax-registration-card > .material-symbols-outlined {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(15, 72, 173, .12);
  color: #1045a8;
  font-size: calc(32px + var(--font-increase) - var(--font-decrease));
}

.tax-registration-card small {
  display: block;
  color: var(--secondary-text);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tax-registration-card h2 {
  margin: 0 0 10px;
  color: var(--blue-bg);
  font-size: calc(26px + var(--font-increase) - var(--font-decrease));
  font-weight: 900;
}

.tax-registration-card strong {
  display: block;
  color: var(--text-bold-dark);
  font-size: calc(21px + var(--font-increase) - var(--font-decrease));
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.service-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(240, 249, 255, .92));
  border: 1px solid rgba(31, 102, 209, .12);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(11, 47, 101, .06);
  padding: 32px;
  backdrop-filter: blur(12px);
}

.service-panel h3 {
  color: #0f4a8a;
  font-weight: 900;
  margin-bottom: 24px;
}

.service-panel a {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(31, 102, 209, .1);
  color: var(--text-bold-dark);
  text-decoration: none;
  font-weight: 700;
}

.service-panel a:last-child {
  border-bottom: 0;
}

.service-panel a:hover {
  color: var(--secondary-text);
}

.custom-container {
  max-width: 1440px;
}

.updates-list {
  display: flex;
  flex-direction: column;
}

.update-row {
  display: grid;
  grid-template-columns: 92px 1fr 150px;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(209, 225, 245, .9);
  align-items: center;
  transition: all .25s ease;
  animation: slideInLeft .5s ease-out backwards;
}

.update-row:nth-child(2) {
  animation-delay: .1s;
}

.update-row:nth-child(3) {
  animation-delay: .2s;
}

.update-row:hover {
  background: rgba(15, 74, 189, .02);
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 8px;
}

.updates-list .update-row:first-child {
  border-top: 1px solid rgba(209, 225, 245, .9);
}

.update-date {
  display: flex;
  align-items: center;
  gap: 12px;
}

.update-date .day {
  font-size: calc(42px + var(--font-increase) - var(--font-decrease));
  line-height: 1;
  font-weight: 900;
  color: #0f4a8a;
}

.update-date .month,
.update-date .year {
  display: block;
  font-size: calc(13px + var(--font-increase) - var(--font-decrease));
  color: var(--gray-text);
}

.update-text {
  text-decoration: none;
  color: var(--text-bold-dark);
  font-weight: 700;
}

.update-row:hover .update-text {
  color: var(--secondary-text);
}

.update-action {
  color: var(--primary-text);
  font-weight: 800;
  text-decoration: none;
  justify-self: end;
}

.pdf-hero {
  padding-top: 56px;
  padding-bottom: 36px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-text);
  text-decoration: none;
  font-weight: 800;
  margin-bottom: 24px;
}

.back-link:hover {
  color: var(--secondary-text);
}

.pdf-page-title {
  max-width: 840px;
}

.pdf-page-title h1 {
  font-size: clamp(calc(34px + var(--font-increase) - var(--font-decrease)), 5vw, calc(62px + var(--font-increase) - var(--font-decrease)));
  line-height: 1.05;
  color: var(--blue-bg);
  margin: 16px 0;
  font-weight: 900;
}

.pdf-page-title p {
  color: var(--gray-text);
  font-size: calc(18px + var(--font-increase) - var(--font-decrease));
  line-height: 1.7;
  margin: 0;
}

.pdf-section {
  padding-top: 24px;
  padding-bottom: 64px;
}

.ots-section-heading {
  margin-bottom: 18px;
}

.ots-section-heading h2 {
  margin: 8px 0 0;
  font-size: calc(28px + var(--font-increase) - var(--font-decrease));
  color: var(--blue-bg);
  font-weight: 800;
}

.ots-current-list {
  margin-bottom: 24px;
}

.ots-archive-section {
  margin-top: 42px;
}

.pdf-toolbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 18px 20px;
  border: 1px solid rgba(31, 102, 209, .14);
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 18px 44px rgba(17, 55, 116, .08);
}

.pdf-toolbar span {
  display: block;
  color: var(--gray-text);
  font-size: calc(13px + var(--font-increase) - var(--font-decrease));
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.pdf-toolbar strong {
  color: var(--blue-bg);
  font-size: calc(17px + var(--font-increase) - var(--font-decrease));
}

.pdf-toolbar .common-btn:first-of-type {
  margin-left: auto;
}

.pdf-viewer {
  min-height: 760px;
  border: 1px solid rgba(31, 102, 209, .14);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: rgba(255, 255, 255, .9);
  overflow: hidden;
  box-shadow: 0 22px 54px rgba(17, 55, 116, .12);
}

.pdf-viewer iframe {
  width: 100%;
  height: 760px;
  display: block;
  border: 0;
  background: #fff;
}

.pdf-fallback {
  display: flex;
  justify-content: space-between;
  align-items: center;
  place-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-top: 1px solid rgba(31, 102, 209, .12);
  color: var(--gray-text);
  background: rgba(246, 249, 254, .96);
}

.pdf-fallback .material-symbols-outlined {
  font-size: calc(30px + var(--font-increase) - var(--font-decrease));
  color: #c40018;
}

.pdf-fallback p {
  margin: 0;
  flex: 1;
}

.pdf-fallback-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 28px;
}

.section-title-row h2 {
  margin: 0;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.program-card {
  padding: 32px;
  background: rgba(255,255,255,.92);
  border-radius: 30px;
  border: 1px solid rgba(31, 102, 209, .12);
  min-height: 280px;
  transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
  box-shadow: 0 20px 54px rgba(15, 56, 107, .08);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(31, 102, 209, .1), transparent);
  transition: all .6s ease;
  opacity: 0;
}

.program-card:hover::before {
  opacity: 1;
  top: -10px;
  right: -10px;
}

.program-card:nth-child(2) {
  background: rgba(234, 246, 255, .9);
}

.program-card:nth-child(3) {
  background: rgba(255, 247, 232, .9);
}

.program-card:hover {
  border-color: rgba(31, 102, 209, .28);
  box-shadow: 0 28px 65px rgba(15, 56, 107, .14);
  transform: translateY(-6px);
}

.program-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .85);
  color: var(--primary-text);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.program-icon .material-symbols-outlined {
  font-size: calc(34px + var(--font-increase) - var(--font-decrease));
}

.program-card h3 {
  font-size: calc(24px + var(--font-increase) - var(--font-decrease));
  font-weight: 900;
  margin-bottom: 14px;
}

.program-card p {
  color: var(--gray-text);
  line-height: 1.8;
}

.program-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-text);
  font-weight: 800;
  text-decoration: none;
}

.responsive-table {
  overflow-x: auto;
  border: 1px solid rgba(24, 49, 103, .1);
  border-radius: 24px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 24px 60px rgba(15, 56, 107, .08);
  backdrop-filter: blur(10px);
  animation: fadeInUp .6s ease-out .2s backwards;
}

.info-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: calc(15px + var(--font-increase) - var(--font-decrease));
}

.info-table th,
.info-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(225, 229, 243, .9);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  background: linear-gradient(135deg, #0d3f7a 0%, #1658b7 100%);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.info-table tr:nth-child(even) td {
  background: rgba(248, 251, 255, .88);
}

.info-table tr:last-child td {
  border-bottom: 0;
}

.contact-feedback-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 42px;
  align-items: start;
}

.contact-card,
.feedback-form {
  border: 1px solid rgba(31, 102, 209, .12);
  border-radius: 32px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 60px rgba(15, 56, 107, .06);
  backdrop-filter: blur(12px);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border: 1px solid rgba(31, 102, 209, .12);
  border-radius: 32px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 60px rgba(15, 56, 107, .06);
  backdrop-filter: blur(12px);
  transition: all .35s ease;
  position: relative;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(15, 56, 107, .12);
  border-color: rgba(31, 102, 209, .18);
}

.contact-card span.material-symbols-outlined {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(15, 72, 173, .12);
  color: #1045a8;
  font-size: calc(34px + var(--font-increase) - var(--font-decrease));
  transition: all .3s ease;
}

.contact-card:hover span.material-symbols-outlined {
  background: rgba(15, 72, 173, .18);
  transform: scale(1.1) rotate(5deg);
}

.contact-card div strong {
  display: block;
  font-size: calc(18px + var(--font-increase) - var(--font-decrease));
  color: #0f3f77;
  margin-bottom: 6px;
}

.contact-card div a,
.contact-card div p {
  color: var(--gray-text);
  text-decoration: none;
}

.office-phone-list {
  margin: 8px 0 0;
  padding-left: 20px;
  color: var(--gray-text);
}

.office-phone-list li + li {
  margin-top: 4px;
}

.feedback-form {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.feedback-form .form-row {
  display: grid;
  gap: 10px;
}

.feedback-form label {
  font-weight: 700;
  color: var(--blue-bg);
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(31, 102, 209, .18);
  border-radius: 16px;
  outline: none;
  font-size: calc(15px + var(--font-increase) - var(--font-decrease));
  color: var(--text-bold-dark);
  background: rgba(255,255,255,.96);
}

.feedback-form textarea {
  resize: vertical;
  min-height: 150px;
}

.form-status {
  margin: 0;
  min-height: 24px;
  color: var(--gray-text);
  font-weight: 700;
}

.form-status.success {
  color: #136f3f;
}

.form-status.error {
  color: #b42318;
}

.admin-portal {
  display: grid;
  gap: 28px;
}

.admin-login-panel {
  max-width: 560px;
}

.admin-login-panel h2,
.admin-dashboard h2 {
  margin: 12px 0 0;
  color: var(--blue-bg);
  font-weight: 900;
}

.admin-dashboard {
  padding: 28px;
  border: 1px solid rgba(31, 102, 209, .12);
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 60px rgba(15, 56, 107, .06);
}

.admin-dashboard-header,
.admin-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.admin-actions {
  justify-content: flex-start;
  margin-top: 24px;
}

.feedback-responses-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.feedback-response {
  padding: 20px;
  border: 1px solid rgba(31, 102, 209, .12);
  border-radius: 8px;
  background: rgba(246, 249, 254, .96);
}

.feedback-response header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 12px;
}

.feedback-response strong {
  display: block;
  color: var(--blue-bg);
  font-size: calc(18px + var(--font-increase) - var(--font-decrease));
}

.feedback-response small {
  color: var(--gray-text);
  font-weight: 700;
}

.feedback-response p {
  margin: 0;
  color: var(--text-bold-dark);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.contact-card {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,.96);
}

.contact-card span.material-symbols-outlined {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(14, 101, 179, .1);
  color: #0f4a8a;
}

.contact-card div strong {
  font-size: calc(17px + var(--font-increase) - var(--font-decrease));
  color: var(--blue-bg);
  margin-bottom: 8px;
}

.contact-card div p,
.contact-card div a {
  color: var(--gray-text);
  text-decoration: none;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
  background: linear-gradient(135deg, #0f3f78 0%, #0f4f95 100%);
  color: #fff;
  border-radius: 32px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 28px 72px rgba(8, 30, 60, .18);
  animation: fadeInUp .7s ease-out .3s backwards;
}

.footer-brand {
  display: flex;
  gap: 18px;
  align-items: center;
  min-width: 320px;
}

.footer-brand img {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  padding: 12px;
}

.footer-brand h2 {
  font-size: calc(22px + var(--font-increase) - var(--font-decrease));
  margin: 0;
  font-weight: 900;
}

.footer-brand p {
  color: rgba(255,255,255,.85);
  margin: 8px 0 0;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 24px;
}

.footer-cols h3 {
  font-size: calc(16px + var(--font-increase) - var(--font-decrease));
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.footer-cols a {
  display: block;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: calc(14px + var(--font-increase) - var(--font-decrease));
  transition: all .3s ease;
  position: relative;
  padding-left: 0;
}

.footer-cols a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1.5px;
  background: rgba(255,255,255,.6);
  transition: width .3s ease;
}

.footer-cols a:hover {
  color: #fff;
  padding-left: 8px;
}

.footer-cols a:hover::before {
  width: 6px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.72);
  font-size: calc(14px + var(--font-increase) - var(--font-decrease));
}

.footer-bottom span {
  min-width: 220px;
}

@media (max-width: 1200px) {
  .padding-80px {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-section,
  .main-header,
  .announcement-bar {
    margin-left: 0;
    margin-right: 0;
    border-radius: 28px;
  }

  .hero-copy {
    padding: 80px 40px 60px;
  }

  .about-grid,
  .contact-feedback-grid,
  .contact-grid,
  .program-grid,
  .tax-registration-grid,
  .leadership-current-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .top-strip-inner > .d-flex,
  .main-header > .d-flex,
  .green-nav .navbar-collapse {
    flex-direction: column;
    gap: 16px;
  }

  .top-strip-inner > .d-flex,
  .top-strip-inner > .d-flex > .d-flex,
  .main-header > .d-flex {
    width: 100%;
    align-items: center !important;
  }

  .top-strip-inner > .d-flex > .d-flex {
    justify-content: center;
  }

  .top-strip-inner .line-divider {
    display: none;
  }

  .top-strip-inner .b-bottom {
    gap: 10px;
  }

  .green-nav .nav-link {
    width: 100%;
    justify-content: center;
  }

  .green-nav {
    min-height: auto;
  }

  .green-nav .navbar-toggler {
    margin: 8px auto;
  }

  .search-wrap {
    width: 100%;
    flex: 0 0 100%;
    order: -1;
    padding: 0 !important;
  }

  .ada-area {
    gap: 4px;
    justify-content: center;
    padding: 4px 8px;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    background: rgba(255, 255, 255, .8);
  }

  .text-btn {
    min-width: 36px;
    min-height: 34px;
  }

  .brand-lockup {
    min-width: 0;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .brand-lockup img {
    width: 76px;
    height: 76px;
  }

  .right-logo {
    justify-content: center !important;
    width: 100%;
    flex-wrap: wrap;
  }

  .gov-mark {
    border-left: 0;
    padding-left: 0;
    justify-content: center;
  }

  .hero-section {
    min-height: 500px;
    margin-top: 20px;
  }

  .hero-content {
    min-height: 500px;
    padding: 40px 30px;
  }

  .hero-copy h1 {
    font-size: clamp(calc(36px + var(--font-increase) - var(--font-decrease)), 8vw, calc(52px + var(--font-increase) - var(--font-decrease)));
  }

  .announcement-bar {
    height: auto;
    padding: 0;
    border-radius: 0 0 24px 24px;
  }

  .announcement-bar > .d-flex {
    flex-wrap: wrap;
    align-items: stretch !important;
  }

  .announcement-title {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    height: auto;
  }

  .ticker {
    flex: 1 1 calc(100% - 56px);
    min-width: 0;
    padding: 12px 0 12px 14px;
  }

  .ticker-track {
    gap: 32px;
  }

  .update-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 0;
  }

  .update-action {
    justify-self: start;
  }

  .pdf-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .pdf-toolbar .common-btn:first-of-type {
    margin-left: 0;
  }

  .pdf-viewer,
  .pdf-viewer iframe {
    height: 620px;
    min-height: 620px;
  }

  .pdf-fallback {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .padding-80px {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(calc(32px + var(--font-increase) - var(--font-decrease)), 9vw, calc(46px + var(--font-increase) - var(--font-decrease)));
  }

  .top-strip-inner > .d-flex > .d-flex:first-child {
    flex-direction: column;
    gap: 8px;
  }

  .brand-lockup {
    flex-direction: column;
    gap: 10px;
  }

  .right-logo {
    flex-direction: column;
    gap: 10px !important;
  }

  .common-btn {
    width: 100%;
    max-width: 260px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding: 56px 20px 72px;
  }

  .hero-actions {
    width: 100%;
  }

  .quick-section {
    margin-top: 18px;
  }

  .head-deco {
    width: fit-content;
    padding: 10px 16px;
  }

  .quick-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    justify-content: center;
  }
}
