:root {
    --gov-green: #006A4E;
    --gov-green-dark: #00513B;
    --gov-tint-rgb: 0, 41, 30;
    --gov-red: #F42A41;
    --gov-band: #F2F5F3;
    --gov-border: #DDE3E0;
    --gov-text: #1F2937;
    --gov-muted: #5B6B63;
    --gov-link: #0B5FA5;
    --gov-surface: #FFFFFF;
    --gov-page: #FAFBFA;
    --gov-radius: 2px;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Noto Sans Bengali', 'SolaimanLipi', 'Kalpurush', 'Nikosh', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--gov-text);
    background: var(--gov-page);
}

.gov-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

.gov-skip {
    position: absolute;
    left: -9999px;
    top: 0;
    background: #fff;
    color: #000;
    padding: 8px 14px;
    z-index: 99;
}

.gov-skip:focus {
    left: 8px;
    top: 8px;
}

.gov-utility {
    background: var(--gov-green-dark);
    color: #fff;
    font-size: .8125rem;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.gov-utility .gov-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 34px;
    flex-wrap: wrap;
}

.gov-utility a {
    color: #fff;
    text-decoration: none;
}

.gov-utility-left,
.gov-utility-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gov-utility-left {
    gap: 14px;
}

.gov-u-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    border-radius: var(--gov-radius);
    font: inherit;
    font-size: .8125rem;
    line-height: 1;
    padding: 5px 9px;
    cursor: pointer;
}

.gov-u-btn:hover,
.gov-u-btn[aria-pressed="true"] {
    background: rgba(255, 255, 255, .16);
}

.gov-masthead {
    background: var(--gov-surface);
    border-bottom: 3px solid var(--gov-green);
}

.gov-masthead .gov-wrap {
    display: flex;
    align-items: center;
    column-gap: 16px;
    row-gap: 2px;
    padding-top: 14px;
    padding-bottom: 14px;
    flex-wrap: wrap;
}

.gov-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1 1 380px;
    min-width: 0;
    text-decoration: none;
}

.gov-brand:hover {
    text-decoration: none;
}

.gov-seal {
    width: 62px;
    height: 62px;
    flex: none;
    object-fit: contain;
}

.gov-brand-text .gov-line {
    font-size: .8125rem;
    color: var(--gov-muted);
}

.gov-brand-text h1 {
    font-size: 1.375rem;
    line-height: 1.35;
    color: var(--gov-green-dark);
    font-weight: 700;
    margin: 0;
}

.gov-sub {
    font-size: .8125rem;
    color: var(--gov-muted);
}

.gov-masthead .gov-sub {
    flex: 1 0 100%;
    text-align: center;
    margin: 0;
}

.gov-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.gov-search {
    display: flex;
    flex: 0 1 300px;
    margin: 0;
}

.gov-search button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gov-search input {
    flex: 1;
    border: 1px solid var(--gov-border);
    border-right: 0;
    border-radius: var(--gov-radius) 0 0 var(--gov-radius);
    padding: 9px 12px;
    font: inherit;
    font-size: .875rem;
    background: var(--gov-surface);
    color: var(--gov-text);
    min-width: 0;
}

.gov-search button {
    border: 0;
    background: var(--gov-green);
    color: #fff;
    padding: 0 14px;
    border-radius: 0 var(--gov-radius) var(--gov-radius) 0;
    cursor: pointer;
}

.gov-nav {
    background: var(--gov-green);
}

.gov-nav .gov-wrap {
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.gov-nav-links {
    width: 100%;
}

.gov-nav-links-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.gov-nav a {
    color: #fff;
    text-decoration: none;
    font-size: .9375rem;
    padding: 12px 16px;
    display: block;
    border-right: 1px solid rgba(255, 255, 255, .14);
}

.gov-nav a:hover,
.gov-nav a.active {
    background: var(--gov-green-dark);
    color: #fff;
    text-decoration: none;
}

.gov-nav .gov-wrap .gov-search {
    flex: 1 1 auto;
    min-width: 0;
    margin: 8px 0 8px 12px;
}

.gov-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 6px 0;
    flex: none;
    background: transparent;
    border: 0;
    border-radius: var(--gov-radius);
    cursor: pointer;
}

.gov-nav-toggle:hover,
.gov-nav-toggle:focus-visible {
    background: rgba(255, 255, 255, .14);
}

.gov-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
}

.gov-nav a.gov-nav-cta {
    font-weight: 600;
    text-align: center;
    background: #fff;
    color: var(--gov-green-dark);
    border: 1px solid #fff;
    border-radius: 999px;
    margin: 0.5rem;
    padding: 3px 14px;
}

.gov-nav a.gov-nav-cta:hover,
.gov-nav a.gov-nav-cta:focus-visible {
    background: var(--gov-green-dark);
    color: #fff;
    border-color: var(--gov-green-dark);
}

.gov-nav-overlay {
    display: none;
}

.gov-nav-links-head,
.gov-nav-close {
    display: none;
}

@media (max-width: 991px) {
    .gov-nav .gov-wrap {
        justify-content: flex-start;
        padding: 0 16px;
        position: relative;
    }

    .gov-nav-toggle {
        display: inline-flex;
    }

    .gov-nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(11, 20, 16, 0);
        pointer-events: none;
        z-index: 40;
        transition: background-color .25s ease;
    }

    .gov-nav-overlay.active {
        background: rgba(11, 20, 16, .55);
        pointer-events: auto;
    }

    .gov-nav-links {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 50;
        display: flex;
        flex-direction: column;
        width: min(86vw, 320px);
        max-width: 320px;
        height: 100vh;
        background: var(--gov-surface);
        box-shadow: 10px 0 30px rgba(0, 0, 0, .2);
        transform: translateX(-100%);
        transition: transform .28s ease;
    }

    .gov-nav-links.active {
        transform: translateX(0);
    }

    .gov-nav-links-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex: none;
        gap: 12px;
        padding: 16px 18px;
        background: var(--gov-green);
    }

    .gov-nav-links-title {
        font-size: 1.0625rem;
        font-weight: 700;
        color: #fff;
    }

    .gov-nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        flex: none;
        background: rgba(255, 255, 255, .14);
        border: 0;
        border-radius: 50%;
        color: #fff;
        cursor: pointer;
    }

    .gov-nav-close:hover,
    .gov-nav-close:focus-visible {
        background: rgba(255, 255, 255, .28);
    }

    .gov-nav-links-body {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;
        flex: 1;
        overflow-y: auto;
        padding: 6px 0 18px;
    }

    .gov-nav a {
        color: var(--gov-text);
        border-right: 0;
        border-bottom: 1px solid var(--gov-border);
        padding: 14px 18px;
        font-size: 1rem;
    }

    .gov-nav a:hover,
    .gov-nav a:focus-visible {
        background: var(--gov-band);
        color: var(--gov-green-dark);
    }

    .gov-nav a.active {
        color: var(--gov-green-dark);
        background: var(--gov-band);
        border-left: 3px solid var(--gov-green);
        padding-left: 15px;
    }

    .gov-nav a.gov-nav-cta {
        margin: 14px 18px 0;
        border: 1px solid var(--gov-green);
        border-radius: var(--gov-radius);
        text-align: center;
        background: var(--gov-green);
        color: #fff;
    }

    .gov-nav a.gov-nav-cta:hover,
    .gov-nav a.gov-nav-cta:focus-visible {
        background: var(--gov-green-dark);
        border-color: var(--gov-green-dark);
        color: #fff;
    }
}

body.gov-nav-open {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .gov-nav-links,
    .gov-nav-overlay {
        transition: none;
    }
}

.gov-hero {
    background: #0d3b2e;
}

.gov-hero .gov-slide {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
}

.gov-hero .gov-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .1));
}

.gov-hero-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--gov-tint-rgb), .72);
    color: #fff;
    padding: 16px 0;
    z-index: 2;
}

.gov-hero-caption h2 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    color: #fff;
}

.gov-hero-caption p {
    font-size: .875rem;
    opacity: .85;
    margin: 0;
}

.gov-hero-ph {
    display: grid;
    place-items: center;
    height: 400px;
    background: linear-gradient(135deg, #dfe8e3, #c3d2cb);
    color: #7b8d84;
    font-size: .875rem;
}

.gov-marquee-strip {
    background: linear-gradient(120deg, rgba(var(--gov-tint-rgb), .88), rgba(var(--gov-tint-rgb), .68));
    color: #fff;
    padding: 10px 0;
}

.gov-marquee-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gov-marquee-label {
    flex: none;
    display: inline-flex;
    align-items: center;
    background: var(--gov-red);
    color: #fff;
    font-size: .8125rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--gov-radius);
}

.gov-marquee-viewport {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.gov-marquee-track {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: max-content;
    white-space: nowrap;
    will-change: transform;
}

.gov-marquee-item {
    flex: none;
    padding: 0 40px 0 0;
}

.gov-marquee-item a {
    color: #fff;
    font-size: .9375rem;
    font-weight: 500;
}

.gov-marquee-item a:hover {
    text-decoration: underline;
}

.gov-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 28px;
    padding: 28px 16px;
}

.gov-sec {
    background: var(--gov-surface);
    border: 1px solid var(--gov-border);
    border-radius: var(--gov-radius);
    margin-bottom: 24px;
}

.gov-sec-head {
    background: var(--gov-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 14px;
}

.gov-sec-head h2 {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    color: inherit;
}

.gov-sec-head a {
    color: inherit;
    font-size: .8125rem;
    text-decoration: none;
    white-space: nowrap;
}

.gov-sec-head a:hover {
    text-decoration: underline;
    color: inherit;
}

.gov-sec-body {
    padding: 18px 16px;
}

.gov-sec-body.gov-flush {
    padding: 0;
}

.gov-intro::after {
    content: "";
    display: table;
    clear: both;
}

.gov-intro h3 {
    font-size: 1.125rem;
    color: var(--gov-green-dark);
    margin-bottom: 10px;
}

.gov-intro p {
    margin-bottom: 12px;
}

.gov-ph {
    background: linear-gradient(135deg, #dfe8e3, #c3d2cb);
    border: 1px solid var(--gov-border);
    display: grid;
    place-items: center;
    color: #7b8d84;
    font-size: .8125rem;
}

.gov-intro img,
.gov-intro .gov-ph {
    float: right;
    width: 320px;
    max-width: 45%;
    margin: 0 0 12px 20px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--gov-border);
}

.gov-btn {
    display: inline-block;
    background: var(--gov-green);
    color: #fff;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: var(--gov-radius);
    font-size: .9375rem;
    border: 1px solid var(--gov-green);
}

.gov-btn:hover {
    background: var(--gov-green-dark);
    color: #fff;
    text-decoration: none;
}

.gov-btn-out {
    background: transparent;
    color: var(--gov-green-dark);
    border-color: var(--gov-green);
}

.gov-btn-out:hover {
    background: var(--gov-green);
    color: #fff;
}

.gov-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gov-tile {
    border: 1px solid var(--gov-border);
    border-radius: var(--gov-radius);
    padding: 18px 10px;
    text-align: center;
    text-decoration: none;
    color: var(--gov-text);
    display: block;
    background: var(--gov-surface);
}

.gov-tile:hover {
    border-color: var(--gov-green);
    background: var(--gov-band);
    color: var(--gov-green-dark);
    text-decoration: none;
}

.gov-tile svg {
    width: 32px;
    height: 32px;
    stroke: var(--gov-green);
    fill: none;
    stroke-width: 1.6;
    margin-bottom: 8px;
}

.gov-tile span {
    display: block;
    font-size: .875rem;
    line-height: 1.5;
}

.success-story-carousel .owl-stage-outer {
    padding-bottom: 4px;
}

.gov-story {
    border: 1px solid var(--gov-border);
    border-radius: var(--gov-radius);
    padding: 14px;
    background: var(--gov-surface);
}

.gov-story img,
.gov-story .gov-ph {
    display: block;
    width: 100%;
    height: 140px;
    border-radius: var(--gov-radius);
    object-fit: cover;
    margin-bottom: 10px;
    font-size: .6875rem;
}

.gov-story h3 {
    font-size: .9375rem;
    font-weight: 600;
    margin: 0;
}

.gov-story .gov-meta {
    font-size: .8125rem;
    color: var(--gov-muted);
    margin-bottom: 8px;
}

.gov-story p {
    font-size: .875rem;
    line-height: 1.75;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.gov-story p.gov-story-expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.gov-see-more {
    display: none;
    margin-top: 6px;
    padding: 0;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--gov-green);
    background: none;
    border: none;
    cursor: pointer;
}

.gov-see-more.gov-see-more-visible {
    display: inline-block;
}

.gov-about {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 20px;
    align-items: center;
}

.gov-about img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--gov-border);
}

.gov-about p {
    text-align: justify;
    margin-bottom: 12px;
}

.gov-events {
    display: grid;
    gap: 14px;
}

.gov-event {
    display: flex;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gov-border);
}

.gov-event:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.gov-event-date {
    flex: none;
    width: 54px;
    text-align: center;
    border: 1px solid var(--gov-green);
    border-radius: var(--gov-radius);
    overflow: hidden;
    height: fit-content;
}

.gov-event-date .gov-d {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gov-green-dark);
    padding-top: 3px;
}

.gov-event-date .gov-m {
    display: block;
    font-size: .6875rem;
    background: var(--gov-green);
    color: #fff;
    padding: 2px 0;
}

.gov-event h3 {
    font-size: .9375rem;
    font-weight: 600;
    margin: 0 0 4px;
}

.gov-event h3 a {
    color: var(--gov-text);
    text-decoration: none;
}

.gov-event h3 a:hover {
    color: var(--gov-green-dark);
}

.gov-event p {
    font-size: .875rem;
    color: var(--gov-muted);
    margin: 0;
}

.gov-cta {
    background: var(--gov-green-dark);
    color: #fff;
    padding: 22px 0;
    margin: 8px 0 28px;
}

.gov-cta .gov-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.gov-cta h2 {
    font-size: 1.125rem;
    margin: 0 0 4px;
    color: #fff;
}

.gov-cta p {
    margin: 0;
    font-size: .875rem;
    opacity: .9;
}

.gov-stats {
    background: var(--gov-green);
    color: #fff;
    padding: 26px 0;
    margin: 8px 0 28px;
}

.gov-stats .gov-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    text-align: center;
}

.gov-stat svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    opacity: .9;
}

.gov-stat .gov-num {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.gov-stat .gov-lbl {
    font-size: .875rem;
    opacity: .92;
}

.gov-stat + .gov-stat {
    border-left: 1px solid rgba(255, 255, 255, .22);
}

.gov-message {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 20px;
    align-items: start;
}

.gov-message img,
.gov-message .gov-ph {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 1px solid var(--gov-border);
}

.gov-message blockquote {
    font-size: .9375rem;
    line-height: 1.85;
    text-align: justify;
    margin-bottom: 12px;
    border: 0;
    padding: 0;
}

.gov-message .gov-who {
    font-weight: 700;
}

.gov-message .gov-role {
    font-size: .875rem;
    color: var(--gov-muted);
}

.gov-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gov-gallery img,
.gov-gallery .gov-ph {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--gov-border);
}

.gov-result-box {
    background: var(--gov-band);
    border: 1px solid var(--gov-border);
    border-radius: var(--gov-radius);
    padding: 14px;
    margin: 14px;
}

.gov-result-box h3 {
    font-size: 1rem;
    color: var(--gov-green-dark);
    margin: 0 0 4px;
}

.gov-result-box p {
    font-size: .8125rem;
    color: var(--gov-muted);
    margin-bottom: 10px;
    line-height: 1.7;
}

.gov-result-box .gov-btn {
    width: 100%;
    text-align: center;
}

.gov-ticker {
    height: auto;
    min-height: 70px;
    max-height: 290px;
    overflow: hidden;
    position: relative;
}

.gov-ticker ul {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gov-notice {
    display: flex;
    gap: 11px;
    padding: 11px 14px;
    border-bottom: 1px solid var(--gov-border);
}

.gov-date {
    flex: none;
    width: 46px;
    text-align: center;
    border: 1px solid var(--gov-green);
    border-radius: var(--gov-radius);
    overflow: hidden;
    line-height: 1.35;
    height: fit-content;
}

.gov-date .gov-d {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gov-green-dark);
    padding-top: 2px;
}

.gov-date .gov-m {
    display: block;
    font-size: .6875rem;
    background: var(--gov-green);
    color: #fff;
    padding: 1px 0;
}

.gov-notice-body {
    min-width: 0;
    display: block;
}

.gov-notice-body a {
    font-size: .875rem;
    line-height: 1.65;
    color: var(--gov-link);
}

.gov-tag-new {
    display: inline-block;
    background: var(--gov-red);
    color: #fff;
    font-size: .625rem;
    padding: 1px 6px;
    border-radius: var(--gov-radius);
    margin-left: 6px;
    vertical-align: middle;
}

.gov-empty {
    padding: 18px 14px;
    color: var(--gov-muted);
    font-size: .875rem;
}

.gov-hint-text {
    color: var(--gov-muted);
    font-size: .9rem;
    margin-bottom: 18px;
}

.gov-hint-text a {
    color: var(--gov-link);
    font-weight: 600;
    text-decoration: none;
}

.gov-hint-text a:hover {
    text-decoration: underline;
}

.gov-hotline li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 14px;
    border-bottom: 1px solid var(--gov-border);
    font-size: .875rem;
}

.gov-hotline li:last-child {
    border-bottom: 0;
}

.gov-hotline .gov-num {
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--gov-green-dark);
}

.gov-hotline,
.gov-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gov-links li {
    border-bottom: 1px solid var(--gov-border);
}

.gov-links li:last-child {
    border-bottom: 0;
}

.gov-links a {
    display: block;
    padding: 9px 14px;
    font-size: .875rem;
    text-decoration: none;
    color: var(--gov-text);
}

.gov-links a::before {
    content: "\203A";
    color: var(--gov-green);
    margin-right: 8px;
    font-weight: 700;
}

.gov-links a:hover {
    background: var(--gov-band);
    color: var(--gov-green-dark);
    text-decoration: none;
}

.gov-social {
    display: flex;
    gap: 8px;
    padding: 14px;
}

.gov-social a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--gov-border);
    border-radius: var(--gov-radius);
    display: grid;
    place-items: center;
    color: var(--gov-green);
    font-weight: 700;
    font-size: .8125rem;
    text-decoration: none;
}

.gov-social a:hover {
    border-color: var(--gov-green);
    color: var(--gov-green-dark);
}

.gov-foot {
    background: var(--gov-green-dark);
    color: #fff;
    padding: 34px 0 0;
    margin-top: 10px;
}

.gov-foot .gov-cols {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding-bottom: 26px;
}
.gov-foot .gov-cols > div:nth-child(2) {
    justify-self: center;
}
.gov-foot .gov-cols > div:last-child {
    justify-self: end;
    text-align: right;
}

.gov-foot h4 {
    font-size: .9375rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
}

.gov-foot ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gov-foot li {
    font-size: .8125rem;
    padding: 3px 0;
}

.gov-foot a {
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
}

.gov-foot a:hover {
    color: #fff;
    text-decoration: underline;
}

.gov-foot .gov-addr {
    font-size: .8125rem;
    color: rgba(255, 255, 255, .86);
    line-height: 1.8;
}

.gov-foot-bar {
    border-top: 1px solid rgba(255, 255, 255, .18);
    padding: 12px 0;
    font-size: .78125rem;
    color: rgba(255, 255, 255, .8);
}

.gov-foot-bar .gov-wrap {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.gov-page-head {
    background: var(--gov-band);
    border-bottom: 1px solid var(--gov-border);
    padding: 18px 0;
}

.gov-page-head h1 {
    font-size: 1.5rem;
    color: var(--gov-green-dark);
    margin: 0;
}

.gov-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8125rem;
    color: var(--gov-muted);
    margin-bottom: 8px;
}

.gov-breadcrumb a {
    color: var(--gov-link);
    text-decoration: none;
}

.gov-breadcrumb a:hover {
    text-decoration: underline;
}

.gov-breadcrumb span:last-child {
    color: var(--gov-text);
}

.gov-notice-grid {
    display: flex;
    flex-direction: column;
}

.gov-notice-card {
    display: flex;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--gov-border);
}

.gov-notice-card-date {
    flex: none;
    width: 54px;
    text-align: center;
    border: 1px solid var(--gov-green);
    border-radius: var(--gov-radius);
    overflow: hidden;
    height: fit-content;
}

.gov-notice-card-date .gov-d {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gov-green-dark);
    padding-top: 3px;
}

.gov-notice-card-date .gov-m {
    display: block;
    font-size: .6875rem;
    background: var(--gov-green);
    color: #fff;
    padding: 2px 0;
}

.gov-notice-card-body {
    flex: 1 1 auto;
    min-width: 0;
}

.gov-notice-card-body h3 {
    font-size: .9375rem;
    font-weight: 600;
    margin: 0 0 4px;
}

.gov-notice-card-body h3 a {
    color: var(--gov-text);
    text-decoration: none;
}

.gov-notice-card-body h3 a:hover {
    color: var(--gov-green-dark);
}

.gov-notice-card-body p {
    font-size: .875rem;
    color: var(--gov-muted);
    margin: 0;
}

.gov-load-more {
    text-align: center;
}

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

.gov-media-card {
    border: 1px solid var(--gov-border);
    border-radius: var(--gov-radius);
    overflow: hidden;
    background: var(--gov-surface);
    display: flex;
    flex-direction: column;
}

.gov-media-card-img {
    display: block;
    height: 170px;
    overflow: hidden;
    flex: none;
    background: var(--gov-band);
}

.gov-media-card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    color: transparent;
}

.gov-media-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 auto;
}

.gov-media-card-body h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.gov-media-card-body h3 a {
    color: var(--gov-text);
    text-decoration: none;
}

.gov-media-card-body h3 a:hover {
    color: var(--gov-green-dark);
}

.gov-media-card-meta {
    font-size: .8125rem;
    color: var(--gov-muted);
}

.gov-media-card-body p {
    font-size: .875rem;
    color: var(--gov-muted);
    margin: 0;
    flex: 1 1 auto;
}

.gov-media-card-link {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--gov-link);
    text-decoration: none;
    margin-top: 4px;
}

.gov-media-card-link:hover {
    text-decoration: underline;
}

.gov-card-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gov-card-list .gov-media-card {
    flex-direction: row-reverse;
}

.gov-card-list .gov-media-card-img {
    width: 280px;
    height: auto;
}

.gov-card-list .gov-media-card-body {
    justify-content: center;
}

@media (max-width: 680px) {
    .gov-card-list .gov-media-card {
        flex-direction: column;
    }

    .gov-card-list .gov-media-card-img {
        width: 100%;
        height: 170px;
    }
}

.gov-form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
}

.gov-side .gov-form-row {
    grid-template-columns: minmax(0, 1fr);
}

.gov-form-field {
    min-width: 0;
    margin-bottom: 18px;
}

.gov-form-field label {
    display: block;
    font-weight: 600;
    font-size: .89rem;
    margin-bottom: 7px;
    color: var(--gov-text);
}

.gov-form-field input[type="text"],
.gov-form-field input[type="email"],
.gov-form-field input[type="tel"],
.gov-form-field input[type="number"],
.gov-form-field input[type="date"],
.gov-form-field input[type="file"],
.gov-form-field textarea,
.gov-form-field select,
.gov-form-field .gov-select-trigger {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 46px;
    padding: 12px 15px;
    border: 1px solid var(--gov-border);
    border-radius: var(--gov-radius);
    font: inherit;
    font-size: .95rem;
    background: var(--gov-surface);
    color: var(--gov-text);
}

.gov-form-field input[type="file"] {
    padding: 9px 12px;
    line-height: 1;
}

.gov-form-field textarea {
    height: auto;
    min-height: 130px;
    resize: vertical;
}

.gov-contact-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gov-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .9rem;
    color: var(--gov-text);
}

.gov-contact-list svg {
    flex: none;
    width: 22px;
    height: 22px;
    color: var(--gov-green);
    margin-top: 2px;
}

.gov-contact-map {
    width: 100%;
    height: 280px;
    border: 1px solid var(--gov-border);
    border-radius: var(--gov-radius);
}

@media (max-width: 680px) {
    .gov-form-row {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 980px) {
    .gov-layout {
        grid-template-columns: minmax(0, 1fr);
    }

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

    .gov-stat:nth-child(3) {
        border-left: 0;
    }

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

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

@media (max-width: 680px) {
    .gov-message,
    .gov-about {
        grid-template-columns: 1fr;
    }

    .gov-intro img,
    .gov-intro .gov-ph {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 14px;
    }

    .gov-cta .gov-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .gov-hero .gov-slide,
    .gov-hero-ph {
        height: 280px;
    }

    .gov-masthead .gov-wrap {
        justify-content: center;
    }

    .gov-brand {
        flex-direction: column;
        text-align: center;
    }

    .gov-search {
        flex: 0 1 100%;
    }

    .gov-foot .gov-cols {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gov-foot .gov-cols > div:last-child {
        justify-self: center;
        text-align: center;
    }

    .gov-foot ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .gov-foot li:not(:last-child)::after {
        content: "|";
        margin: 0 10px;
        color: rgba(255, 255, 255, .4);
    }

    .gov-social {
        justify-content: center;
    }

    .gov-foot-bar .gov-wrap {
        justify-content: center;
        text-align: center;
    }
}

.gov-select {
    position: relative;
}

.gov-select-native {
    display: none;
}

.gov-select-trigger {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--gov-border);
    border-radius: var(--gov-radius);
    background: var(--gov-surface);
    color: var(--gov-text);
    font: inherit;
    font-size: .875rem;
    text-align: left;
    cursor: pointer;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.gov-select-trigger:hover {
    border-color: var(--gov-green);
}

.gov-select-trigger:focus-visible {
    outline: none;
    border-color: var(--gov-green);
    box-shadow: 0 0 0 3px rgba(var(--gov-tint-rgb), .18);
}

.gov-select-trigger[aria-expanded="true"] {
    border-color: var(--gov-green);
    box-shadow: 0 0 0 3px rgba(var(--gov-tint-rgb), .18);
}

.gov-select-value {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gov-select-value.is-placeholder {
    color: var(--gov-muted);
}

.gov-select-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--gov-muted);
    transition: transform .18s ease;
}

.gov-select-trigger[aria-expanded="true"] .gov-select-icon {
    transform: rotate(180deg);
    color: var(--gov-green);
}

.gov-select-list {
    position: absolute;
    z-index: 20;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 4px;
    list-style: none;
    background: var(--gov-surface);
    border: 1px solid var(--gov-border);
    border-radius: var(--gov-radius);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
    max-height: 240px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
}

.gov-select-list.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.gov-select-list:focus {
    outline: none;
}

.gov-select-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 36px;
    padding: 8px 10px;
    border-radius: calc(var(--gov-radius) + 1px);
    font-size: .875rem;
    color: var(--gov-text);
    cursor: pointer;
}

.gov-select-option.is-active {
    background: var(--gov-band);
}

.gov-select-option[aria-selected="true"] {
    color: var(--gov-green-dark);
    font-weight: 600;
}

.gov-select-check {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    color: var(--gov-green);
    opacity: 0;
}

.gov-select-option[aria-selected="true"] .gov-select-check {
    opacity: 1;
}

@media (max-width: 480px) {
    .gov-select-option {
        min-height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gov-select-list,
    .gov-select-icon {
        transition: none;
    }
}

.gov-error {
    min-height: calc(100vh - 35px);
    display: flex;
    align-items: center;
    background: var(--gov-page);
}

.gov-error-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 48px 16px 64px;
    text-align: center;
}

.gov-error-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    text-decoration: none;
}

.gov-error-brand span {
    font-size: .9375rem;
    font-weight: 600;
    color: var(--gov-green-dark);
}

.gov-error-code {
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--gov-red);
    margin-bottom: 8px;
}

.gov-error h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gov-text);
    margin-bottom: 12px;
}

.gov-error-text {
    color: var(--gov-muted);
    font-size: .9375rem;
    margin-bottom: 28px;
}

.gov-error-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .gov-error-code {
        font-size: 4rem;
    }

    .gov-error-inner {
        padding: 32px 16px 48px;
    }
}

/* Footer Brand Overrides */
.gov-foot-brand .gov-brand-text h1 {
    color: #fff;
}
.gov-foot-brand .gov-brand-text .gov-line,
.gov-foot-brand .gov-brand-text .gov-sub {
    color: rgba(255, 255, 255, .86);
}

/* Social Link Boxes */
.gov-social-icons .gov-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #fff;
    color: var(--gov-green-dark, #115c40);
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
}
.gov-social-icons .gov-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background-color: var(--gov-green-dark, #115c40);
    color: #fff;
    text-decoration: none;
}
