:root {
    --ink: #14213d;
    --muted: #5c6678;
    --paper: #ffffff;
    --surface: #f3f6fb;
    --line: #dce4ef;
    --brand: #3157c8;
    --brand-dark: #203b8f;
    --accent: #f5b841;
    --radius: 22px;
    --shadow: 0 18px 48px rgba(20, 33, 61, 0.11);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.72;
    overflow-wrap: anywhere;
}

a {
    color: var(--brand);
    text-decoration: none;
}

a:hover {
    color: var(--brand-dark);
}

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.header-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ce407f6847d {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--ink);
}

.ce407f6847d img {
    width: 58px;
    height: 50px;
    object-fit: contain;
}

.brand-name {
    max-width: 390px;
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 750;
}

.site-nav a:hover,
.site-nav a.active {
    background: var(--surface);
    color: var(--brand-dark);
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    color: var(--ink);
    padding: 9px 13px;
    font-weight: 800;
}

main {
    min-height: 70vh;
}

.cc14b608ed2 {
    position: relative;
    overflow: hidden;
    padding: 76px 0 70px;
    background: linear-gradient(135deg, #eef3ff, #ffffff 64%);
}

.cc14b608ed2::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -120px;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: rgba(49, 87, 200, 0.10);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 52px;
}

.hero-copy {
    min-width: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 15px;
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    color: var(--brand-dark);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.organization-name {
    max-width: 18ch;
    margin: 0 0 12px;
    color: var(--ink);
    font-size: clamp(2.25rem, 4.5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
}

.hero-tagline {
    max-width: 680px;
    margin: 0 0 18px;
    color: var(--brand-dark);
    font-size: clamp(1.05rem, 1.7vw, 1.3rem);
    font-weight: 800;
    line-height: 1.35;
}

.c88df509b0f,
.page-intro {
    max-width: 68ch;
    color: var(--muted);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.c24b3d270af {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border: 1px solid var(--line);
    border-radius: 13px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.c24b3d270af:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--brand);
    border-color: var(--brand);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--brand-dark);
    color: #ffffff;
}

.btn-secondary {
    background: #ffffff;
    color: var(--ink);
}

.hero-media {
    position: relative;
}

.hero-media img {
    width: 100%;
    min-height: 450px;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.hero-note {
    position: absolute;
    left: -25px;
    bottom: 24px;
    width: min(310px, 82%);
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.hero-note strong,
.hero-note span {
    display: block;
}

.hero-note strong {
    margin-bottom: 4px;
    color: var(--brand-dark);
    font-size: 1rem;
}

.hero-note span {
    color: var(--muted);
    font-size: 0.9rem;
}

.section {
    padding: 74px 0;
}

.section-soft {
    background: var(--surface);
    border-block: 1px solid var(--line);
}

.section-head {
    max-width: 800px;
    margin-bottom: 34px;
}

h2 {
    margin: 0 0 17px;
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    line-height: 1.16;
    letter-spacing: -0.025em;
}

h3 {
    margin: 0 0 9px;
    font-size: 1.17rem;
    line-height: 1.3;
}

p {
    margin: 0 0 16px;
}

.section-head p,
.cb6fd8651f0 p,
.content-prose p,
.content-prose li {
    color: var(--muted);
}

.grid {
    display: grid;
    gap: 24px;
}

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

.cb6fd8651f0 {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 10px 32px rgba(20, 33, 61, 0.06);
}

.cb6fd8651f0 img {
    width: 100%;
    height: 205px;
    margin-bottom: 19px;
    border-radius: 16px;
    object-fit: cover;
}

.text-card {
    height: 100%;
}

.number {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 12px;
    background: #eef3ff;
    color: var(--brand-dark);
    font-weight: 900;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 48px;
}

.image-frame img {
    width: 100%;
    min-height: 380px;
    border-radius: 26px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.check-list {
    display: grid;
    gap: 13px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 31px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: 900;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
    margin-top: 24px;
}

.stat {
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #ffffff;
}

.stat strong,
.stat span {
    display: block;
}

.stat strong {
    color: var(--brand-dark);
    font-size: 1.2rem;
}

.stat span {
    color: var(--muted);
    font-size: 0.87rem;
}

.page-hero {
    padding: 58px 0;
    background: linear-gradient(135deg, #eef3ff, #ffffff 70%);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 45px;
}

.page-hero img {
    width: 100%;
    height: 330px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.info-panel,
.form-panel {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.info-panel p:last-child {
    margin-bottom: 0;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 48px;
    align-items: start;
}

.content-prose {
    max-width: 820px;
}

.content-prose h2 {
    margin-top: 34px;
    font-size: 1.65rem;
}

.content-prose h2:first-child {
    margin-top: 0;
}

.sticky-panel {
    position: sticky;
    top: 110px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 48px;
    align-items: start;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.contact-card {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #ffffff;
}

.contact-card span,
.contact-card strong {
    display: block;
}

.contact-card span {
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.c4a1562b73d {
    display: grid;
    gap: 15px;
}

.c4a1562b73d label {
    display: grid;
    gap: 7px;
    font-weight: 800;
}

.c4a1562b73d input,
.c4a1562b73d textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cdd7e6;
    border-radius: 12px;
    background: #ffffff;
    color: var(--ink);
}

.c4a1562b73d input:focus,
.c4a1562b73d textarea:focus {
    outline: 3px solid rgba(49, 87, 200, 0.15);
    border-color: var(--brand);
}

.map-embed iframe {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    border: 0;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.footer {
    padding: 45px 0 24px;
    background: #10192d;
    color: #eaf0fb;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand img {
    width: 62px;
    height: 54px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand strong {
    display: block;
    max-width: 620px;
    color: #ffffff;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.2;
}

.footer-brand p {
    margin: 5px 0 0;
    color: #b8c3d8;
}

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

.footer h3 {
    color: #ffffff;
}

.footer p {
    color: #b8c3d8;
}

.footer a {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 19px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #9daac2;
    font-size: 0.87rem;
}

@media (max-width: 940px) {
    .hero-grid,
    .page-hero-grid,
    .split,
    .contact-grid,
    .content-layout {
        grid-template-columns: 1fr;
    }

    .grid-3,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-media,
    .page-hero img {
        max-width: 720px;
    }

    .sticky-panel {
        position: static;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .header-wrap {
        min-height: 70px;
        flex-wrap: wrap;
        padding: 9px 0;
    }

    .ce407f6847d {
        max-width: calc(100% - 80px);
    }

    .ce407f6847d img {
        width: 48px;
        height: 43px;
    }

    .brand-name {
        max-width: 250px;
        font-size: 1rem;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 5px 0 10px;
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        text-align: center;
        border-radius: 10px;
    }

    .cc14b608ed2 {
        padding: 44px 0 48px;
    }

    .hero-grid {
        gap: 30px;
    }

    .organization-name {
        max-width: 100%;
        font-size: clamp(1.85rem, 9vw, 2.65rem);
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .c88df509b0f,
    .page-intro {
        font-size: 1rem;
    }

    .hero-media img {
        min-height: 290px;
        border-radius: 21px;
    }

    .hero-note {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: 12px;
    }

    .section {
        padding: 48px 0;
    }

    .page-hero {
        padding: 42px 0;
    }

    .page-hero img {
        height: 260px;
    }

    .image-frame img {
        min-height: 270px;
    }

    .stat-row,
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .hero-actions .c24b3d270af {
        width: 100%;
    }

    .footer-brand {
        align-items: flex-start;
    }
}

@media (max-width: 430px) {
    .container {
        width: min(100% - 22px, 1160px);
    }

    .brand-name {
        max-width: 190px;
        font-size: 0.94rem;
    }

    .cb6fd8651f0,
    .info-panel,
    .form-panel {
        padding: 20px;
        border-radius: 18px;
    }

    .map-embed iframe {
        aspect-ratio: 1 / 1;
    }
}
