:root {
    color-scheme: light;
    font-family: "Gill Sans MT", "Gill Sans", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #171717;
    background: #f6f3f1;
    --red: #c7171a;
    --red-dark: #a50f16;
    --red-soft: #fbebea;
    --nav: #ffffff;
    --card: #ffffff;
    --text-muted: #5b5b5f;
    --border: rgba(23, 23, 23, 0.08);
    --shadow: 0 24px 60px rgba(20, 20, 20, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #f6f3f1;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.safeguarding-hotline {
    background: var(--red-dark);
    color: #ffffff;
}

.safeguarding-hotline-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    min-height: 2.75rem;
    padding: 0.5rem 0;
    text-align: center;
}

.safeguarding-hotline-inner span {
    font-weight: 600;
}

.safeguarding-hotline-inner a {
    color: #ffffff;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.safeguarding-hotline-inner a:hover,
.safeguarding-hotline-inner a:focus-visible {
    color: #ffe2df;
}

.safeguarding-report-button {
    border: 1px solid #ffffff;
    border-radius: 999px;
    background: #ffffff;
    color: var(--red-dark);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
}

.safeguarding-report-button:hover,
.safeguarding-report-button:focus-visible {
    background: #ffe2df;
    border-color: #ffe2df;
}

.safeguarding-modal[hidden] {
    display: none;
}

.safeguarding-modal {
    align-items: center;
    background: rgba(23, 23, 23, 0.62);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 1rem;
    position: fixed;
    z-index: 100;
}

.safeguarding-modal-content {
    background: var(--card);
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 2rem);
    max-width: 34rem;
    overflow-y: auto;
    padding: 1.5rem;
    position: relative;
    width: 100%;
}

.safeguarding-modal-content h2 {
    color: #171717;
    margin: 0 2rem 0.35rem 0;
}

.safeguarding-modal-content p {
    color: var(--text-muted);
    margin: 0 0 1rem;
}

.safeguarding-modal-close {
    background: transparent;
    border: 0;
    color: #171717;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.25rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.safeguarding-form label {
    color: #171717;
    display: block;
    font-weight: 600;
    margin-top: 0.8rem;
}

.safeguarding-form input,
.safeguarding-form textarea {
    border: 1px solid #c8c8c8;
    border-radius: 4px;
    display: block;
    margin-top: 0.25rem;
    padding: 0.65rem;
    width: 100%;
}

.safeguarding-form textarea {
    min-height: 7rem;
    resize: vertical;
}

.safeguarding-form .btn {
    border: 0;
    cursor: pointer;
    margin-top: 1rem;
}

body.safeguarding-modal-open {
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--nav);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.25rem 0;
}

.brand {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #c3c2c2;
    flex-shrink: 0;
}

.brand img {
    height: 3.5rem;
    width: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.nav-item {
    position: relative;
}

.site-nav a {
    color: #333333;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: block;
    white-space: nowrap;
}

.site-nav a:hover {
    color: var(--red);
    background-color: var(--red-soft);
    text-decoration: none;
}

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    color: #333333;
    transition: background-color 0.2s ease;
}

.site-nav a:focus {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

.menu-toggle:focus {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    font-weight: 600;
    padding: 0.95rem 1.6rem;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--red);
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(199, 23, 26, 0.15);
}

.btn-secondary {
    background: #ffffff;
    border: 1px solid var(--border);
    color: #793535;
}

.hero {
    padding: 5.5rem 0 4rem;
    background: linear-gradient(135deg, rgba(199, 23, 26, 0.258), rgba(246, 214, 212, 0.95)), url("images/african children greeting the team.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
}

.hero.parallax {
    background-attachment: fixed;
}

.section.parallax.section--white {
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url("images/african children greeting the team.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.section.parallax.section--light {
    background: linear-gradient(rgba(249, 247, 245, 0.92), rgba(249, 247, 245, 0.92)), url("images/african children greeting the team.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.section.parallax.section--dark {
    background: linear-gradient(135deg, rgba(27, 27, 29, 0.067), rgba(37, 37, 39, 0.92)), url("images/african children greeting the team.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.section {
    padding: 5rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: 2rem;
    align-items: center;
}

.hero-copy {
    max-width: 34rem;
}

.eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    margin: 0 0 1.25rem;
    font-size: clamp(2.8rem, 4vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero p {
    margin: 0 0 2rem;
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding: 2rem;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.12);
}

.hero-card-inner {
    display: grid;
    gap: 1rem;
}

.hero-card-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.78);
}

.hero-card h2 {
    margin: 0;
    font-size: 1.75rem;
}

.hero-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
}


/* Hero Carousel */

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(199, 23, 26, 0.475), rgba(0, 0, 0, 0.6));
}

.carousel-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.carousel-text {
    max-width: 800px;
}

.carousel-text h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.carousel-text p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
}

.carousel-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    padding: 0;
}

.carousel-dot.active,
.carousel-dot:hover {
    background: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-arrow.prev {
    left: 1.5rem;
}

.carousel-arrow.next {
    right: 1.5rem;
}

.showcase-section {
    padding: 0 0 4rem;
    background: #f9f7f5;
}

.showcase-heading {
    max-width: 42rem;
    margin: 0 auto 2rem;
    padding-top: 4rem;
}

.showcase-heading h2 {
    margin-bottom: 0.75rem;
}

.showcase-heading p {
    margin-bottom: 0;
}

.showcase-carousel {
    position: relative;
    overflow: hidden;
    aspect-ratio: 32 / 9;
    background: #1b1b1d;
}

.showcase-slides {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease;
}

.showcase-slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
    margin: 0;
}

.showcase-slide::after {
    content: '';
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
}

.showcase-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.showcase-slide figcaption {
    position: absolute;
    right: 5rem;
    bottom: 2.25rem;
    left: 5rem;
    z-index: 1;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

.showcase-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.showcase-arrow:hover {
    background: var(--red);
    transform: translateY(-50%) scale(1.05);
}

.showcase-arrow.prev {
    left: 1.25rem;
}

.showcase-arrow.next {
    right: 1.25rem;
}

.showcase-nav {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    z-index: 2;
    display: flex;
    gap: 0.6rem;
    transform: translateX(-50%);
}

.showcase-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
}

.showcase-dot.active {
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}

@media (max-width: 768px) {
    .hero-carousel {
        min-height: 450px;
    }
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .carousel-text p {
        font-size: 1rem;
    }
}

.section {
    padding: 5rem 0;
}

.section--white {
    background: #ffffff;
}

.section--light {
    background: #f9f7f5;
}

.section--dark {
    background: #1b1b1d;
    color: #f5f3f1;
}

.vision-section {
    position: relative;
    overflow: hidden;
    background: #242426;
    color: #f5f3f1;
}

.vision-section::before {
    content: "";
    position: absolute;
    top: -12rem;
    left: -8rem;
    width: 32rem;
    height: 32rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 0 4rem rgba(255, 255, 255, 0.025), 0 0 0 8rem rgba(255, 255, 255, 0.015);
    pointer-events: none;
}

.vision-grid {
    position: relative;
    z-index: 1;
    align-items: center;
}

.vision-copy h2 {
    max-width: 34rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    letter-spacing: -0.04em;
}

.vision-copy p {
    max-width: 36rem;
    color: #d8d6d3;
}

.vision-copy .btn {
    margin-top: 0.25rem;
}

.vision-pillars {
    gap: 0.85rem;
}

.vision-section .vision-card {
    position: relative;
    overflow: hidden;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 3px solid var(--red);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.vision-section .vision-card:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.12);
}

.vision-section .vision-card-number {
    display: block;
    margin-bottom: 1rem;
    color: #ffb3ab;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.vision-section .vision-card h3 {
    margin-bottom: 0.65rem;
    color: #ffffff;
}

.vision-section .vision-card p {
    margin: 0;
    color: #d8d6d3;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
}

.section-label.light {
    color: #f4d2cf;
}

.section h2 {
    margin: 0 0 1.5rem;
    font-size: clamp(2rem, 2.6vw, 3.2rem);
    line-height: 1.05;
}

.section p {
    margin: 0 0 1.75rem;
    color: var(--text-muted);
    max-width: 42rem;
}

.section--dark p {
    color: #d8d6d3;
}

.stats-section {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0;
    background: #1b1b1d;
    color: #f5f3f1;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: -10rem;
    right: -6rem;
    width: 28rem;
    height: 28rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 4rem rgba(255, 255, 255, 0.025), 0 0 0 8rem rgba(255, 255, 255, 0.018);
    pointer-events: none;
}

.stats-heading {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stats-heading h2 {
    margin: 0;
    color: #ffffff;
}

.stats-heading p {
    max-width: 28rem;
    margin: 0;
    color: #d8d6d3;
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-top: 3px solid var(--red);
    background: rgba(255, 255, 255, 0.07);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card::after {
    content: "";
    position: absolute;
    right: -2rem;
    bottom: -3rem;
    width: 9rem;
    height: 9rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
}

.stat-index {
    display: block;
    margin-bottom: 2.5rem;
    color: #ffb3ab;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.stats-section .stat-number {
    position: relative;
    z-index: 1;
    margin: 0 0 0.6rem;
    color: #ffffff;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.stats-section .stat-label {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #d8d6d3;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-suffix {
    color: #ffb3ab;
}

.section-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: 2.5rem;
    align-items: start;
}

.card-grid,
.feature-grid,
.impact-list {
    display: grid;
    gap: 1.5rem;
}

.report-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

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

.info-card,
.feature-card,
.contact-card {
    padding: 2rem;
    border-radius: 28px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.report-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.report-card-header {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.report-card-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(0, 109, 151, 0.1);
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 700;
}

.report-meta {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.report-actions {
    margin-top: auto;
    display: flex;
    justify-content: flex-start;
    gap: 0.75rem;
}

.report-card h3 {
    margin: 0;
}

.report-card p {
    margin: 0;
}

.contact-card {
    background: var(--red);
    color: white;
}

.contact-card form {
    margin: 0;
}

.contact-card .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.contact-card .form-group input,
.contact-card .form-group textarea {
    width: 100%;
    padding: 1rem 0.75rem 0.5rem;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.contact-card .form-group input:focus,
.contact-card .form-group textarea:focus {
    outline: none;
    border-bottom-color: white;
}

.contact-card .form-group label {
    position: absolute;
    top: 1rem;
    left: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
    pointer-events: none;
    font-size: 1rem;
}

.contact-card .form-group input:focus+label,
.contact-card .form-group input:not(:placeholder-shown)+label,
.contact-card .form-group textarea:focus+label,
.contact-card .form-group textarea:not(:placeholder-shown)+label {
    top: 0.25rem;
    font-size: 0.85rem;
    color: white;
}

.contact-card .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-card button {
    margin-top: 1rem;
}

.contact-map {
    margin-top: 2rem;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.contact-map h4 {
    margin: 0;
    padding: 1.5rem 2rem 0.75rem;
    font-size: 1.15rem;
    color: #111111;
}

.map-frame {
    min-height: 300px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    display: block;
}

.contact-map p {
    margin: 1rem 2rem 1.5rem;
    color: #5b5b5f;
    line-height: 1.7;
}

.contact-card--light {
    background: white;
    color: #111111;
}

.contact-card--light p {
    color: #4a4a4d;
}

.info-card h3,
.feature-card h3,
.contact-card h3 {
    margin-top: 0;
}

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

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

.partner-logo {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: #f4f2f0;
    border-radius: 20px;
    border: 1px dashed rgba(23, 23, 23, 0.18);
    overflow: hidden;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.infographic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.infographic-card {
    background: white;
    border-radius: 28px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    .partner-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 0.75rem;
    }
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease,
    box-shadow 0.3s ease;
}

.infographic-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(20, 20, 20, 0.12);
}

.infographic-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
    color: var(--red);
    stroke: var(--red);
}

.infographic-card h3 {
    margin: 0 0 1rem;
    font-size: 1.2rem;
    color: #111111;
}

.infographic-card .stat {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--red);
    margin: 1rem 0;
    line-height: 1;
}

.infographic-card p {
    margin: 1rem 0 0;
    color: #5b5b5f;
    font-size: 0.95rem;
    line-height: 1.5;
}

.results-header {
    margin-bottom: 2rem;
}

.results-header p {
    max-width: 45rem;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(20, 20, 20, 0.15);
}

.gallery-image {
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    height: 250px;
    background: #e8e4e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5b5b5f;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item h3 {
    margin: 1.5rem 1.5rem 0.5rem;
    font-size: 1.15rem;
}

.gallery-item p {
    margin: 0 1.5rem 1.5rem;
    color: #5b5b5f;
    font-size: 0.95rem;
}

.feature-card {
    min-height: 220px;
    overflow: hidden;
}

.feature-card-image {
    width: calc(100% + 4rem);
    height: 180px;
    margin: -2rem -2rem 1.5rem;
    object-fit: cover;
    display: block;
}

.newsletter-section {
    background: var(--red);
    color: #ffffff;
}

.newsletter-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-copy h2 {
    margin-bottom: 0.75rem;
}

.newsletter-copy p {
    max-width: 32rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

.newsletter-section .section-label {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.newsletter-form {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.newsletter-form-row {
    display: flex;
    gap: 0.75rem;
}

.newsletter-form input {
    min-width: 0;
    flex: 1;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    background: #ffffff;
    color: #171717;
}

.newsletter-form input:focus {
    outline: 3px solid rgba(255, 255, 255, 0.35);
    outline-offset: 2px;
}

.newsletter-form .btn-primary {
    flex-shrink: 0;
    background: #ffffff;
    color: var(--red);
    box-shadow: none;
}

.newsletter-form .btn-primary:hover {
    background: var(--red-soft);
}

.newsletter-note,
.newsletter-status {
    margin: 0.75rem 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-status:empty {
    display: none;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
}

.video-section .video-copy {
    max-width: 40rem;
}

.video-frame {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: #000;
}

.video-frame video {
    width: 100%;
    display: block;
    height: auto;
    max-height: 520px;
}

.embedded-story-section {
    overflow: hidden;
}

.embedded-story-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.embedded-story-heading h2 {
    margin-bottom: 0;
}

.embedded-story-grid {
    display: grid;
    gap: 1.5rem;
}

.embedded-story-item {
    min-width: 0;
}

.embedded-story-hero {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: end;
    border-radius: 8px;
    background: #171717 center / cover no-repeat;
    box-shadow: var(--shadow);
}

.embedded-story-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(23, 23, 23, 0.9), rgba(23, 23, 23, 0.2));
}

.embedded-story-item:nth-child(1) .embedded-story-hero {
    background-image: url("images/education-and-skills.png");
}

.embedded-story-item:nth-child(2) .embedded-story-hero {
    background-image: url("images/improved-agricultural-technologies.jpg");
}

.embedded-story-item:nth-child(3) .embedded-story-hero {
    background-image: url("images/food-security.png");
}

.embedded-story-item:nth-child(4) .embedded-story-hero {
    background-image: url("images/dialogue-on-harmful-social-norms.jpg");
}

.embedded-story-item:nth-child(5) .embedded-story-hero {
    background-image: url("images/vsla-savings-group-activity.jpeg");
}

.embedded-story-item:nth-child(6) .embedded-story-hero {
    background-image: url("images/empower her.jpg");
}

.embedded-story-item-heading {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    width: min(760px, 100%);
    padding: 3.5rem;
    color: #ffffff;
}

.embedded-story-item-heading h3 {
    max-width: 600px;
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.15;
}

.embedded-story-item-heading p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
}

.story-type {
    display: block;
    margin-bottom: 0.55rem;
    color: #ffd6d1;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.story-link {
    flex-shrink: 0;
    white-space: nowrap;
}

.impact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: impact-item;
}

.impact-list li {
    position: relative;
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    align-items: start;
    margin: 0;
    padding: 1.35rem 1.5rem 1.35rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 3px solid var(--red);
    background: rgba(255, 255, 255, 0.06);
    color: #f1f0ee;
    font-size: 1rem;
}

.impact-list li::before {
    content: counter(impact-item, decimal-leading-zero);
    counter-increment: impact-item;
    color: #ffb3ab;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.action-banner {
    padding: 3.5rem 0;
    background: var(--red);
    color: #ffffff;
}

.action-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

.action-banner h2 {
    max-width: 42rem;
    margin: 0 0 0.75rem;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.action-banner p {
    max-width: 42rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

.btn-light,
.btn-outline-light {
    white-space: nowrap;
}

.btn-light {
    background: #ffffff;
    color: var(--red-dark);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
}

.reverse-grid {
    grid-template-columns: 0.95fr 1.05fr;
}

.contact-card p {
    margin: 0.8rem 0;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer {
    padding: 3rem 0 1.5rem;
    background: #111114;
    color: #c7c5c3;
}

.footer-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.footer-brand {
    flex-shrink: 0;
}

.footer-logo img {
    height: 2.5rem;
    width: auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.footer-links a {
    color: #d8d6d2;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--red);
}

.footer-socials {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #d8d6d2;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-weight: 600;
    font-size: 1rem;
}

.social-icon:hover {
    background-color: var(--red);
    color: white;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #8b8985;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 980px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-socials {
        justify-content: center;
    }
    .hero-grid,
    .section-grid,
    .contact-grid,
    .impact-grid,
    .reverse-grid,
    .stats-grid,
    .feature-grid,
    .newsletter-panel {
        grid-template-columns: 1fr;
    }
    .hero-card {
        padding: 1.75rem;
    }
    .hero,
    .section.parallax {
        background-attachment: scroll;
    }
    .action-banner-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .safeguarding-hotline-inner {
        flex-direction: column;
        gap: 0;
        line-height: 1.35;
    }
    .safeguarding-hotline-inner a {
        white-space: normal;
    }
    .newsletter-form-row {
        flex-direction: column;
    }
    .newsletter-form .btn {
        width: 100%;
    }
    .embedded-story-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }
    .embedded-story-grid {
        gap: 1rem;
    }
    .embedded-story-item-heading {
        display: block;
        padding: 2rem 1.5rem;
    }
    .embedded-story-hero {
        min-height: 460px;
    }
    .story-link {
        margin-top: 1.5rem;
    }
}

@media (max-width: 560px) {
    .showcase-slide figcaption {
        right: 1.5rem;
        bottom: 2.5rem;
        left: 1.5rem;
        font-size: 1rem;
    }
    .showcase-arrow.prev {
        left: 0.75rem;
    }
    .showcase-arrow.next {
        right: 0.75rem;
    }
}

@media (max-width: 720px) {
    .header-inner {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .site-nav {
        width: 100%;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        background: var(--nav);
        border-top: 1px solid var(--border);
        margin-top: 1rem;
    }
    .site-nav.active {
        display: flex;
    }
    .nav-item {
        width: 100%;
    }
    .site-nav a {
        padding: 1rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .site-nav a:hover {
        background-color: var(--red-soft);
        color: var(--red);
    }
    .menu-toggle {
        display: inline-flex;
        order: 2;
    }
    .btn {
        width: 100%;
        order: 3;
    }
}


/* Donation Form Styles */

.donation-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.donation-contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.donation-info-box {
    background: var(--card);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--red);
}

.donation-info-box h3 {
    color: #111111;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 0;
}

.donation-info-box>p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.contact-method h4 {
    color: var(--red);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.contact-method p {
    margin: 0;
    color: #333;
}

.contact-method a {
    color: var(--red);
    font-weight: 600;
    text-decoration: underline;
}

.contact-method a:hover {
    color: var(--red-dark);
}

.donation-note {
    background: var(--red-soft);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.donation-note p {
    margin: 0 0 0.75rem 0;
    font-weight: 600;
    color: #111;
}

.donation-note ul {
    margin: 0;
    padding-left: 1.25rem;
}

.donation-note li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.donation-cta {
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    padding: 1rem;
    background: #f0f0f0;
    border-radius: 8px;
}

.donation-form {
    background: var(--card);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    color: #111111;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0;
}

.currency-selector {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.currency-selector label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #495057;
}

.currency-selector select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.2s ease;
}

.currency-selector select:focus {
    outline: none;
    border-color: var(--red);
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.amount-option {
    position: relative;
    cursor: pointer;
}

.amount-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.amount-label {
    display: block;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #495057;
    transition: all 0.2s ease;
}

.amount-option input[type="radio"]:checked+.amount-label {
    background: var(--red);
    border-color: var(--red);
    color: white;
}

.amount-option:hover .amount-label {
    border-color: var(--red);
    background: var(--red-soft);
}

.custom-amount {
    margin-top: 1rem;
}

.custom-amount label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #495057;
}

.custom-amount input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.custom-amount input:focus {
    outline: none;
    border-color: var(--red);
}

.custom-amount-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 0.75rem;
    font-weight: 600;
    color: #495057;
    font-size: 1rem;
    z-index: 1;
}

.custom-amount-input-group input {
    padding-left: 2rem;
    width: 100%;
}

.currency-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #495057;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-method {
    position: relative;
    cursor: pointer;
}

.payment-method input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.payment-label {
    display: block;
    padding: 1rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-weight: 500;
    color: #495057;
    transition: all 0.2s ease;
}

.payment-method input[type="radio"]:checked+.payment-label {
    background: var(--red);
    border-color: var(--red);
    color: white;
}

.payment-method:hover .payment-label {
    border-color: var(--red);
    background: var(--red-soft);
}

.bank-details {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.bank-details h4 {
    margin-top: 0;
    color: #495057;
    font-size: 1.1rem;
}

.bank-details p {
    margin: 0.5rem 0;
    color: #6c757d;
    line-height: 1.5;
}

.terms-checkbox {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #6c757d;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--red);
    text-decoration: underline;
}

.checkbox-label a:hover {
    text-decoration: none;
}

.form-actions {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.form-navigation {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.form-navigation .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary {
    background: #ffffff;
    border: 2px solid var(--red);
    color: var(--red);
}

.btn-secondary:hover {
    background: var(--red-soft);
    border-color: var(--red);
    color: var(--red);
}

.btn-donation {
    background: var(--red);
    color: #ffffff;
    border: 1px solid var(--red);
    box-shadow: 0 18px 40px rgba(199, 23, 26, 0.2);
}

.btn-donation:hover {
    background: var(--red-dark);
    box-shadow: 0 22px 48px rgba(165, 15, 22, 0.28);
}

.btn-donation:focus {
    outline: 3px solid rgba(199, 23, 26, 0.35);
    outline-offset: 3px;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.secure-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (max-width: 720px) {
    .donation-form {
        padding: 1.5rem;
    }
    .amount-options {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .btn-large {
        width: 100%;
    }
}


/* Partnership Form Styles */

.partnership-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.partnership-form {
    background: var(--card);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkbox-option:hover {
    background: var(--red-soft);
    border-color: var(--red);
}

.checkbox-option input[type="checkbox"] {
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.checkbox-option span {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #495057;
}

.checkbox-option input[type="checkbox"]:checked+span {
    color: var(--red);
    font-weight: 500;
}

.partnership-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (max-width: 720px) {
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    .partnership-form {
        padding: 1.5rem;
    }
}


/* Volunteer Form Styles */

.volunteer-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.volunteer-form {
    background: var(--card);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.volunteer-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (max-width: 720px) {
    .form-navigation {
        flex-direction: column;
    }
    .form-navigation .btn {
        width: 100%;
        justify-content: center;
    }
}


/* Enrollment Process Styles */

.enrollment-tabs {
    margin-top: 2rem;
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.tab-button {
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-button:hover {
    color: var(--red);
}

.tab-button.active {
    color: var(--red);
    border-bottom-color: var(--red);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    border-color: var(--red);
    box-shadow: 0 8px 24px rgba(199, 23, 26, 0.12);
    transform: translateY(-4px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 1rem;
    flex-shrink: 0;
}

.step-card h3 {
    color: #111111;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.step-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.enrollment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-box {
    background: var(--red-soft);
    border-left: 4px solid var(--red);
    padding: 1.5rem;
    border-radius: 8px;
}

.info-box h4 {
    color: var(--red);
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box li {
    padding: 0.5rem 0;
    color: #495057;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.75rem;
}

.info-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 720px) {
    .tab-buttons {
        flex-direction: column;
        border-bottom: none;
    }
    .tab-button {
        border-bottom: 2px solid transparent;
        border-left: 4px solid transparent;
        padding-left: 1rem;
    }
    .tab-button.active {
        border-bottom: none;
        border-left-color: var(--red);
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .enrollment-info {
        grid-template-columns: 1fr;
    }
}


/* Homepage visual system */

.home-page {
    --red: #ed1c24;
    --red-dark: #b5121b;
    --red-soft: #fff0ed;
    --blue: #1684bd;
    --green: #4d9b63;
    --yellow: #f4c84a;
    --ink: #17252b;
    --paper: #fbf8f1;
    --muted-paper: #f2eee4;
    --border: rgba(23, 37, 43, 0.13);
    background: var(--paper);
    color: var(--ink);
    font-family: "Gill Sans MT", "Gill Sans", sans-serif;
    overflow-x: hidden;
}

html:has(body.home-page) {
    overflow-x: hidden;
}

.home-page h1,
.home-page h2,
.home-page h3 {
    font-family: "Gill Sans MT", "Gill Sans", sans-serif;
    letter-spacing: 0;
}

.home-page .safeguarding-hotline {
    background: var(--red-dark);
    font-size: 0.85rem;
}

.home-page .safeguarding-report-button {
    border-radius: 3px;
    color: var(--ink);
}

.home-page .site-header {
    background: rgba(251, 248, 241, 0.96);
    border-bottom: 3px solid var(--red);
    box-shadow: none;
}

.home-page .header-inner {
    padding: 0.7rem 0;
}

.home-page .brand img {
    height: 4.1rem;
}

.home-page .site-nav {
    gap: 0.15rem;
}

.home-page .site-nav a {
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.7rem 0.75rem;
    border-radius: 2px;
}

.home-page .site-nav a:hover {
    color: var(--red);
    background: var(--red-soft);
}

.home-page .btn {
    border-radius: 3px;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.home-page .btn-primary {
    background: var(--red);
    box-shadow: 4px 4px 0 var(--yellow);
}

.home-page .btn-primary:hover {
    background: var(--red-dark);
    box-shadow: 2px 2px 0 var(--yellow);
}

.home-page .btn-secondary {
    border-color: var(--ink);
    color: var(--ink);
    background: transparent;
}

.home-page .hero {
    padding: 0;
    background: var(--ink);
}

.home-page .hero-carousel {
    min-height: min(700px, calc(100vh - 8rem));
    background: var(--ink);
}

.home-page .carousel-slide::before {
    background: linear-gradient(90deg, rgba(10, 26, 32, 0.93) 0%, rgba(10, 26, 32, 0.72) 35%, rgba(10, 26, 32, 0.08) 76%), linear-gradient(0deg, rgba(10, 26, 32, 0.5), transparent 45%);
}

.home-page .carousel-content {
    justify-content: flex-start;
    text-align: left;
    padding: 3rem max(1rem, calc((100vw - 1120px) / 2));
}

.home-page .carousel-text {
    max-width: 35rem;
}

.home-page .eyebrow {
    margin-bottom: 1.1rem;
    padding: 0.5rem 0.8rem;
    border-radius: 2px;
    background: var(--yellow);
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.home-page .carousel-text h1 {
    max-width: 33rem;
    margin-bottom: 1.25rem;
    color: #fff;
    font-size: clamp(2.65rem, 5vw, 5.25rem);
    line-height: 0.99;
}

.home-page .carousel-text p {
    margin: 0 0 2rem;
    max-width: 31rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
}

.home-page .hero-actions {
    gap: 1.1rem;
}

.home-page .hero-actions .btn-secondary {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

.home-page .carousel-arrow {
    width: 42px;
    height: 42px;
    border-radius: 2px;
    background: rgba(23, 37, 43, 0.58);
}

.home-page .carousel-arrow:hover {
    background: var(--red);
}

.home-page .carousel-nav {
    right: max(1rem, calc((100vw - 1120px) / 2));
    bottom: 2rem;
    left: auto;
    transform: none;
}

.home-page .carousel-dot {
    width: 2.8rem;
    height: 4px;
    border-radius: 0;
}

.home-page .carousel-dot.active,
.home-page .carousel-dot:hover {
    background: var(--yellow);
    transform: none;
    box-shadow: none;
}

.home-page .showcase-section {
    padding-bottom: 0;
    background: var(--paper);
}

.home-page .showcase-heading {
    max-width: 1120px;
    margin: 0 auto;
    padding: 4.5rem 1rem 2.2rem;
}

.home-page .section-label {
    color: var(--red);
    font-size: 0.74rem;
    letter-spacing: 0.16em;
}

.home-page .showcase-heading h2,
.home-page .section h2 {
    color: var(--ink);
}

.home-page .showcase-heading h2 {
    max-width: 33rem;
    font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.home-page .showcase-heading p {
    max-width: 34rem;
}

.home-page .showcase-carousel {
    aspect-ratio: 2.1 / 1;
    background: var(--ink);
}

.home-page .showcase-slide img {
    object-fit: cover;
}

.home-page .stats-section {
    background: var(--red);
    color: #fff;
}

.home-page .stats-section::before,
.home-page .vision-section::before {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 4rem rgba(255, 255, 255, 0.05), 0 0 0 8rem rgba(255, 255, 255, 0.03);
}

.home-page .stats-heading p,
.home-page .stats-section .stat-label {
    color: rgba(255, 255, 255, 0.86);
}

.home-page .stats-section .section-label.light,
.home-page .stat-index,
.home-page .stat-suffix {
    color: var(--yellow);
}

.home-page .stat-card {
    min-height: 190px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-top: 0;
    border-left: 5px solid var(--yellow);
    background: rgba(255, 255, 255, 0.08);
}

.home-page .vision-section {
    background: var(--muted-paper);
    color: var(--ink);
}

.home-page .vision-section::after {
    content: "";
    position: absolute;
    right: -8rem;
    bottom: -12rem;
    width: 30rem;
    height: 30rem;
    border: 2px solid rgba(237, 28, 36, 0.18);
    border-radius: 50%;
    box-shadow: 0 0 0 3rem rgba(237, 28, 36, 0.06), 0 0 0 6rem rgba(244, 200, 74, 0.08);
    pointer-events: none;
}

.home-page .vision-copy {
    position: relative;
    z-index: 1;
}

.home-page .vision-copy h2 {
    color: var(--ink);
}

.home-page .vision-copy p {
    color: #405158;
}

.home-page .vision-section .vision-card {
    border-left-color: var(--green);
    border-radius: 2px;
    background: #ffffff;
    border-top: 1px solid rgba(23, 37, 43, 0.12);
    border-right: 1px solid rgba(23, 37, 43, 0.12);
    border-bottom: 1px solid rgba(23, 37, 43, 0.12);
    box-shadow: 0 12px 24px rgba(23, 37, 43, 0.08);
}

.home-page .vision-section .vision-card:hover {
    background: #ffffff;
    box-shadow: 0 16px 28px rgba(23, 37, 43, 0.13);
}

.home-page .vision-section .vision-card-number {
    color: var(--yellow);
}

.home-page .vision-section .vision-card h3 {
    color: var(--ink);
}

.home-page .vision-section .vision-card p {
    color: #506067;
}

.home-page .section--light {
    background: var(--muted-paper);
}

.home-page .section--white {
    background: var(--paper);
}

.home-page .feature-card,
.home-page .info-card,
.home-page .contact-card {
    border-radius: 2px;
    border-top: 4px solid var(--blue);
    background: #fff;
    box-shadow: 0 12px 30px rgba(23, 37, 43, 0.08);
}

.home-page .feature-card:nth-child(2n) {
    border-top-color: var(--green);
}

.home-page .feature-card:nth-child(3n) {
    border-top-color: var(--red);
}

.home-page .feature-card-image {
    height: 205px;
}

.home-page .action-banner {
    background: var(--yellow);
    color: var(--ink);
}

.home-page .action-banner .section-label,
.home-page .action-banner p {
    color: var(--ink);
}

.home-page .action-banner .btn-light {
    background: var(--ink);
    color: #fff;
}

.home-page .action-banner .btn-outline-light {
    border-color: var(--ink);
    color: var(--ink);
}

.home-page .section--dark {
    background: var(--ink);
}

.home-page .publication-highlight .info-card {
    border-top-color: var(--yellow);
}

.home-page .embedded-story-section {
    background: #e6f0ed;
}

.home-page .site-footer {
    background: var(--ink);
    border-top: 5px solid var(--red);
}

@media (max-width: 1100px) and (min-width: 769px) {
    .home-page .header-inner {
        gap: 0.75rem;
    }
    .home-page .site-nav {
        gap: 0;
    }
    .home-page .site-nav a {
        padding-right: 0.45rem;
        padding-left: 0.45rem;
        font-size: 0.76rem;
    }
    .home-page .header-inner>.btn {
        padding-right: 0.9rem;
        padding-left: 0.9rem;
    }
}

@media (max-width: 768px) {
    .home-page .header-inner {
        gap: 0.5rem;
    }
    .home-page .brand img {
        height: 3.35rem;
    }
    .home-page .hero-carousel {
        min-height: 610px;
    }
    .home-page .carousel-content {
        align-items: flex-end;
        padding: 2.5rem 1.5rem 5.5rem;
    }
    .home-page .carousel-slide::before {
        background: linear-gradient(0deg, rgba(10, 26, 32, 0.94) 3%, rgba(10, 26, 32, 0.48) 70%, rgba(10, 26, 32, 0.1));
    }
    .home-page .carousel-text h1 {
        font-size: clamp(2.5rem, 11vw, 4rem);
    }
    .home-page .carousel-text p {
        font-size: 0.98rem;
    }
    .home-page .carousel-nav {
        right: auto;
        bottom: 1.5rem;
        left: 1.5rem;
    }
    .home-page .showcase-carousel {
        aspect-ratio: 1 / 1.05;
    }
    .home-page .showcase-slide figcaption {
        right: 1.5rem;
        bottom: 2.5rem;
        left: 1.5rem;
        font-size: 1rem;
    }
    .home-page .stats-heading {
        display: block;
    }
    .home-page .stats-heading p {
        margin-top: 1rem;
    }
}