/* =========================================================
   GLOBAL RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #18201b;
    line-height: 1.6;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}


/* =========================================================
   SITE HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid #e8ece9;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* =========================================================
   HEADER CONTAINER
========================================================= */

.header-container {
    width: min(1440px, 94%);
    min-height: 82px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.site-logo {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;

    gap: 10px;

    min-width: max-content;
}

.site-logo-image {
    width: 52px;
    height: 52px;

    object-fit: contain;

    flex-shrink: 0;
}

.site-logo-name {
    color: #172019;

    font-size: 19px;
    font-weight: 700;

    line-height: 1.1;

    white-space: nowrap;
}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.main-navigation {
    display: flex;
    align-items: center;

    gap: 28px;

    margin-left: auto;
}

.nav-link {
    position: relative;

    padding: 29px 0;

    color: #374139;

    font-size: 14px;
    font-weight: 500;

    white-space: nowrap;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.nav-link:hover {
    color: #16733a;
}

.nav-link.active {
    color: #16733a;
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 19px;

    height: 2px;

    background: #16733a;

    border-radius: 10px;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-left: 4px;
}


/* =========================================================
   HEADER BUTTONS
========================================================= */

.header-button {
    min-height: 44px;

    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}


/* Donate */

.donate-button {
    color: #ffffff;
    background: #16733a;

    border: 1px solid #16733a;
}

.donate-button:hover {
    background: #115d2e;
    border-color: #115d2e;

    transform: translateY(-1px);

    box-shadow: 0 7px 18px rgba(22, 115, 58, 0.18);
}


/* Become Donee */

.donee-button {
    color: #16733a;
    background: #ffffff;

    border: 1px solid #16733a;
}

.donee-button:hover {
    color: #ffffff;
    background: #16733a;

    transform: translateY(-1px);

    box-shadow: 0 7px 18px rgba(22, 115, 58, 0.12);
}


/* =========================================================
   MOBILE MENU TOGGLE
========================================================= */

.mobile-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    margin-left: auto;

    padding: 0;

    border: 1px solid #dfe5e1;
    border-radius: 8px;

    background: #ffffff;

    cursor: pointer;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;
}

.menu-line {
    display: block;

    width: 21px;
    height: 2px;

    background: #18201b;

    border-radius: 10px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.mobile-navigation {
    display: none;

    width: 100%;

    background: #ffffff;

    border-top: 1px solid #e8ece9;
}

.mobile-navigation-inner {
    width: min(1200px, 92%);

    margin: 0 auto;

    padding: 12px 0 22px;
}

.mobile-nav-link {
    display: block;

    padding: 14px 4px;

    color: #263029;

    font-size: 15px;
    font-weight: 600;

    border-bottom: 1px solid #edf0ee;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.mobile-nav-link:hover {
    color: #16733a;
    padding-left: 8px;
}


/* =========================================================
   MOBILE CTA
========================================================= */

.mobile-navigation-actions {
    display: flex;

    flex-direction: column;

    gap: 10px;

    padding-top: 18px;
}

.mobile-cta {
    width: 100%;
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    position: relative;

    width: 100%;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(22, 115, 58, 0.08),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #f7faf7 0%,
            #ffffff 55%,
            #f1f7f2 100%
        );
}


.hero-container {
    width: min(1380px, 92%);

    min-height: 720px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, 0.95fr);

    align-items: center;

    gap: 70px;

    padding: 80px 0;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;

    z-index: 5;

    max-width: 720px;
}


.hero-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 24px;

    color: #16733a;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.hero-eyebrow-line {
    width: 34px;

    height: 2px;

    background: #16733a;

    border-radius: 10px;
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-title {
    margin: 0;

    max-width: 760px;

    color: #132019;

    font-size: clamp(
        48px,
        6vw,
        78px
    );

    font-weight: 750;

    line-height: 1.02;

    letter-spacing: -3px;
}


.hero-title span {
    display: block;

    color: #16733a;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {
    max-width: 600px;

    margin-top: 28px;

    color: #526058;

    font-size: 18px;

    line-height: 1.75;
}


/* =========================================================
   HERO ACTIONS
========================================================= */

.hero-actions {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 36px;
}


.hero-primary-button,
.hero-secondary-button {
    min-height: 52px;

    padding: 0 25px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 750;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}


.hero-primary-button {
    color: #ffffff;

    background: #16733a;

    border: 1px solid #16733a;
}


.hero-primary-button:hover {
    background: #115d2e;

    border-color: #115d2e;

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(22, 115, 58, 0.18);
}


.hero-secondary-button {
    color: #16733a;

    background: rgba(255, 255, 255, 0.8);

    border: 1px solid #a9c4b1;
}


.hero-secondary-button:hover {
    background: #ffffff;

    border-color: #16733a;

    transform: translateY(-2px);
}


/* =========================================================
   HERO TRUST LINE
========================================================= */

.hero-trust {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 28px;

    color: #69756e;

    font-size: 13px;

    font-weight: 500;
}


.hero-trust-icon {
    width: 21px;

    height: 21px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background: #16733a;

    font-size: 12px;

    font-weight: 800;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 550px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.hero-visual-background {
    position: absolute;

    width: 460px;

    height: 460px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(22, 115, 58, 0.14),
            rgba(22, 115, 58, 0.04) 55%,
            transparent 70%
        );

    filter: blur(1px);
}


/* =========================================================
   LOGO CARD
========================================================= */

.hero-logo-card {
    position: relative;

    z-index: 3;

    width: 330px;

    height: 330px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.86);

    border: 1px solid rgba(255, 255, 255, 0.95);

    box-shadow:
        0 30px 80px rgba(21, 53, 34, 0.13);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    animation: heroFloat 5s ease-in-out infinite;
}


.hero-logo {
    width: 245px;

    height: 245px;

    object-fit: contain;
}


/* =========================================================
   MESSAGE CARD
========================================================= */

.hero-message-card {
    position: absolute;

    z-index: 6;

    right: 2%;

    bottom: 45px;

    width: 245px;

    padding: 23px 24px;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid #e2ebe4;

    box-shadow:
        0 18px 45px rgba(27, 55, 37, 0.12);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);
}


.hero-message-label {
    display: block;

    margin-bottom: 9px;

    color: #16733a;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.hero-message-card p {
    margin: 0;

    color: #26342b;

    font-size: 16px;

    font-weight: 650;

    line-height: 1.45;
}


/* =========================================================
   DECORATIVE CIRCLES
========================================================= */

.hero-accent-circle {
    position: absolute;

    border-radius: 50%;

    z-index: 2;
}


.hero-circle-one {
    width: 75px;

    height: 75px;

    top: 75px;

    right: 12%;

    background: rgba(22, 115, 58, 0.12);

    border: 1px solid rgba(22, 115, 58, 0.16);
}


.hero-circle-two {
    width: 45px;

    height: 45px;

    bottom: 105px;

    left: 7%;

    background: rgba(38, 151, 208, 0.12);

    border: 1px solid rgba(38, 151, 208, 0.15);
}


/* =========================================================
   HERO ANIMATION
========================================================= */

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}
/* =========================================================
   BUTTON FOUNDATION
========================================================= */

.btn {
    min-height: 46px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


/* =========================================================
   FOOTER — TEMPORARY FOUNDATION
========================================================= */

.site-footer {
    margin-top: 80px;

    padding: 60px 0 0;

    background: #f5f8f5;

    border-top: 1px solid #e4eae5;
}

.footer-container {
    width: min(1200px, 92%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 2fr;

    gap: 60px;
}

.footer-brand h3 {
    font-size: 20px;
}

.footer-brand p {
    max-width: 360px;

    margin-top: 12px;

    color: #59645d;
}

.footer-links {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.footer-links h4 {
    margin-bottom: 12px;

    font-size: 14px;
}

.footer-links a {
    display: block;

    margin: 7px 0;

    color: #59645d;

    font-size: 14px;
}

.footer-links a:hover {
    color: #16733a;
}

.footer-bottom {
    margin-top: 50px;

    padding: 20px 4%;

    border-top: 1px solid #e0e6e1;

    color: #68726b;

    font-size: 13px;
}
/* =========================================================
   02. EMOTIONAL CAMPAIGN SPOTLIGHT
========================================================= */

.campaign-spotlight-section {
    position: relative;

    padding: 110px 0 120px;

    background: #ffffff;

    overflow: hidden;
}


.campaign-spotlight-container {
    width: min(1280px, 92%);

    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.campaign-spotlight-heading {
    margin-bottom: 45px;
}


.section-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 17px;

    color: #16733a;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.section-eyebrow-line {
    width: 30px;

    height: 2px;

    background: #16733a;

    border-radius: 10px;
}


.campaign-heading-row {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;
}


.campaign-spotlight-title {
    margin: 0;

    color: #142019;

    font-size: clamp(
        34px,
        4vw,
        54px
    );

    font-weight: 750;

    line-height: 1.08;

    letter-spacing: -1.8px;
}


.campaign-spotlight-description {
    max-width: 620px;

    margin-top: 17px;

    color: #66736b;

    font-size: 16px;

    line-height: 1.7;
}


.campaign-view-all {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    flex-shrink: 0;

    color: #16733a;

    font-size: 14px;

    font-weight: 750;

    transition:
        gap 0.2s ease,
        color 0.2s ease;
}


.campaign-view-all:hover {
    gap: 13px;

    color: #115d2e;
}


/* =========================================================
   SLIDER
========================================================= */

.campaign-slider-wrapper {
    position: relative;
}


.campaign-slider {
    display: flex;

    gap: 22px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    padding: 5px 2px 25px;
}


.campaign-slider::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   CAMPAIGN CARD
========================================================= */

.campaign-card {
    position: relative;

    flex: 0 0 calc(
        (100% - 44px) / 3
    );

    min-width: 0;

    overflow: hidden;

    scroll-snap-align: start;

    background: #ffffff;

    border: 1px solid #e4ebe6;

    border-radius: 16px;

    box-shadow:
        0 10px 35px rgba(26, 55, 36, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.campaign-card:hover {
    transform: translateY(-5px);

    border-color: #c9dacd;

    box-shadow:
        0 20px 50px rgba(26, 55, 36, 0.11);
}


/* =========================================================
   CARD MEDIA
========================================================= */

.campaign-card-media {
    position: relative;

    height: 245px;

    overflow: hidden;
}


.campaign-demo-image {
    width: 100%;

    height: 100%;

    display: flex;

    align-items: flex-end;

    padding: 22px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #dfeee3,
            #f6faf7
        );
}


.campaign-demo-image::before {
    content: "";

    position: absolute;

    width: 210px;

    height: 210px;

    right: -45px;

    top: -65px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.55);
}


.campaign-demo-image::after {
    content: "";

    position: absolute;

    width: 145px;

    height: 145px;

    left: -35px;

    bottom: -55px;

    border-radius: 50%;

    background: rgba(22, 115, 58, 0.13);
}


.campaign-demo-image span {
    position: relative;

    z-index: 2;

    padding: 7px 11px;

    border-radius: 50px;

    color: #16733a;

    background: rgba(255, 255, 255, 0.88);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.3px;
}


.campaign-demo-health {
    background:
        linear-gradient(
            135deg,
            #dceee3 0%,
            #f7faf7 55%,
            #dceef0 100%
        );
}


.campaign-demo-education {
    background:
        linear-gradient(
            135deg,
            #e9f0df 0%,
            #f8faf4 55%,
            #e3eee8 100%
        );
}


.campaign-demo-community {
    background:
        linear-gradient(
            135deg,
            #dfeee8 0%,
            #f8faf8 55%,
            #e9f1df 100%
        );
}


/* =========================================================
   STATUS BADGE
========================================================= */

.campaign-status-badge {
    position: absolute;

    top: 17px;

    left: 17px;

    z-index: 5;

    padding: 7px 11px;

    border-radius: 50px;

    color: #ffffff;

    background: #16733a;

    font-size: 10px;

    font-weight: 750;

    letter-spacing: 0.4px;

    text-transform: uppercase;
}


/* =========================================================
   CARD BODY
========================================================= */

.campaign-card-body {
    padding: 25px 24px 24px;
}


.campaign-category {
    color: #16733a;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.campaign-card-title {
    margin-top: 9px;

    color: #17221b;

    font-size: 22px;

    font-weight: 750;

    line-height: 1.2;

    letter-spacing: -0.5px;
}


.campaign-card-text {
    min-height: 72px;

    margin-top: 12px;

    color: #66736b;

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================================
   PROGRESS
========================================================= */

.campaign-progress-area {
    margin-top: 21px;
}


.campaign-progress-label {
    display: flex;

    justify-content: space-between;

    gap: 15px;

    color: #647068;

    font-size: 11px;

    font-weight: 650;
}


.campaign-progress-track {
    width: 100%;

    height: 6px;

    margin-top: 9px;

    overflow: hidden;

    border-radius: 20px;

    background: #e8eee9;
}


.campaign-progress-fill {
    height: 100%;

    border-radius: inherit;

    background: #16733a;
}


.campaign-amounts {
    display: flex;

    justify-content: space-between;

    gap: 12px;

    margin-top: 9px;

    color: #8a958e;

    font-size: 10px;
}


/* =========================================================
   CARD BUTTON
========================================================= */

.campaign-card-button {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    width: 100%;

    min-height: 46px;

    margin-top: 23px;

    padding: 0 16px;

    border: 1px solid #c7d8cc;

    border-radius: 8px;

    color: #16733a;

    background: #ffffff;

    font-size: 13px;

    font-weight: 750;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}


.campaign-card-button:hover {
    color: #ffffff;

    background: #16733a;

    border-color: #16733a;
}


/* =========================================================
   SLIDER ARROWS
========================================================= */

.campaign-slider-arrow {
    position: absolute;

    top: 50%;

    z-index: 10;

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #dce5df;

    border-radius: 50%;

    color: #16733a;

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 8px 25px rgba(24, 52, 35, 0.10);

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.campaign-slider-arrow:hover {
    color: #ffffff;

    background: #16733a;

    transform:
        translateY(-50%)
        scale(1.04);
}


.campaign-slider-prev {
    left: -22px;
}


.campaign-slider-next {
    right: -22px;
}


/* =========================================================
   SLIDER DOTS
========================================================= */

.campaign-slider-dots {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin-top: 12px;
}


.campaign-slider-dot {
    width: 7px;

    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #cbd7cf;

    cursor: pointer;

    transition:
        width 0.2s ease,
        background 0.2s ease;
}


.campaign-slider-dot.active {
    width: 22px;

    border-radius: 10px;

    background: #16733a;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.campaign-bottom-cta {
    display: flex;

    justify-content: center;

    margin-top: 35px;
}


.campaign-bottom-button {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    min-height: 48px;

    padding: 0 22px;

    border: 1px solid #b9cdbf;

    border-radius: 8px;

    color: #16733a;

    font-size: 13px;

    font-weight: 750;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.campaign-bottom-button:hover {
    color: #ffffff;

    background: #16733a;

    border-color: #16733a;
}
/* =========================================================
   03. URGENT CAUSES
========================================================= */

.urgent-causes-section {
    position: relative;

    padding: 110px 0 115px;

    background: #f5f9f6;

    overflow: hidden;
}


.urgent-causes-container {
    width: min(1280px, 92%);

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.urgent-causes-header {
    margin-bottom: 38px;
}


.urgent-eyebrow {
    margin-bottom: 17px;
}


.urgent-heading-row {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;
}


.urgent-causes-title {
    margin: 0;

    color: #142019;

    font-size: clamp(
        34px,
        4vw,
        54px
    );

    font-weight: 750;

    line-height: 1.08;

    letter-spacing: -1.8px;
}


.urgent-causes-description {
    max-width: 620px;

    margin-top: 17px;

    color: #66736b;

    font-size: 16px;

    line-height: 1.7;
}


.urgent-view-all {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    flex-shrink: 0;

    color: #16733a;

    font-size: 14px;

    font-weight: 750;

    transition:
        gap 0.2s ease,
        color 0.2s ease;
}


.urgent-view-all:hover {
    gap: 13px;

    color: #115d2e;
}


/* =========================================================
   FILTERS
========================================================= */

.urgent-filters {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 28px;
}


.urgent-filter {
    min-height: 38px;

    padding: 0 16px;

    border: 1px solid #cbd9cf;

    border-radius: 50px;

    color: #536159;

    background: rgba(255, 255, 255, 0.7);

    font-family: inherit;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.urgent-filter:hover {
    color: #16733a;

    border-color: #8fb39a;

    transform: translateY(-1px);
}


.urgent-filter.active {
    color: #ffffff;

    background: #16733a;

    border-color: #16733a;
}


/* =========================================================
   GRID
========================================================= */

.urgent-causes-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;
}


/* =========================================================
   CARD
========================================================= */

.urgent-cause-card {
    display: grid;

    grid-template-columns:
        minmax(220px, 0.85fr)
        minmax(0, 1.15fr);

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e0e9e3;

    border-radius: 15px;

    box-shadow:
        0 9px 30px rgba(25, 55, 36, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.urgent-cause-card:hover {
    transform: translateY(-4px);

    border-color: #c5d7ca;

    box-shadow:
        0 18px 42px rgba(25, 55, 36, 0.09);
}


/* =========================================================
   CARD MEDIA
========================================================= */

.urgent-cause-media {
    position: relative;

    min-height: 315px;

    overflow: hidden;
}


.urgent-demo-image {
    position: relative;

    width: 100%;
    height: 100%;

    min-height: 315px;

    display: flex;

    align-items: flex-end;

    padding: 21px;

    overflow: hidden;
}


.urgent-demo-image::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: -70px;
    right: -65px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.58);
}


.urgent-demo-image::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    left: -60px;
    bottom: -75px;

    border-radius: 50%;

    background: rgba(22, 115, 58, 0.12);
}


.urgent-demo-image span {
    position: relative;

    z-index: 2;

    padding: 7px 11px;

    border-radius: 50px;

    color: #16733a;

    background: rgba(255, 255, 255, 0.9);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.3px;
}


.urgent-demo-health {
    background:
        linear-gradient(
            140deg,
            #d8ece0,
            #f5faf6 55%,
            #dceff0
        );
}


.urgent-demo-emergency {
    background:
        linear-gradient(
            140deg,
            #e8e9d9,
            #fafaf4 55%,
            #e2eee7
        );
}


.urgent-demo-education {
    background:
        linear-gradient(
            140deg,
            #e6efdc,
            #fafbf7 55%,
            #e2ede8
        );
}


.urgent-demo-community {
    background:
        linear-gradient(
            140deg,
            #dceee7,
            #f9fbf9 55%,
            #e8efdc
        );
}


/* =========================================================
   URGENT BADGE
========================================================= */

.urgent-badge {
    position: absolute;

    top: 16px;
    left: 16px;

    z-index: 5;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 11px;

    border-radius: 50px;

    color: #ffffff;

    background: #16733a;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.6px;

    text-transform: uppercase;
}


.urgent-pulse {
    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.15);
}


/* =========================================================
   CARD BODY
========================================================= */

.urgent-cause-body {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 27px 26px;
}


.urgent-cause-meta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;
}


.urgent-cause-meta span:first-child {
    color: #16733a;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.urgent-cause-meta span:last-child {
    color: #89958d;

    font-size: 10px;

    font-weight: 650;
}


.urgent-cause-title {
    margin-top: 12px;

    color: #17221b;

    font-size: 24px;

    font-weight: 750;

    line-height: 1.2;

    letter-spacing: -0.6px;
}


.urgent-cause-text {
    margin-top: 12px;

    color: #66736b;

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   SUPPORT / PROGRESS
========================================================= */

.urgent-support-area {
    margin-top: 22px;
}


.urgent-support-label {
    display: flex;

    justify-content: space-between;

    gap: 10px;

    color: #6b776f;

    font-size: 10px;

    font-weight: 650;
}


.urgent-progress-track {
    width: 100%;

    height: 6px;

    margin-top: 9px;

    overflow: hidden;

    border-radius: 20px;

    background: #e7eee9;
}


.urgent-progress-fill {
    height: 100%;

    border-radius: inherit;

    background: #16733a;
}


/* =========================================================
   CARD ACTIONS
========================================================= */

.urgent-card-actions {
    display: grid;

    grid-template-columns: 1fr auto;

    gap: 9px;

    margin-top: 22px;
}


.urgent-view-button,
.urgent-donate-button {
    min-height: 43px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 0 14px;

    border-radius: 7px;

    font-size: 12px;

    font-weight: 750;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}


.urgent-view-button {
    justify-content: space-between;

    color: #16733a;

    background: #ffffff;

    border: 1px solid #c6d7cb;
}


.urgent-view-button:hover {
    color: #ffffff;

    background: #16733a;

    border-color: #16733a;
}


.urgent-donate-button {
    color: #ffffff;

    background: #16733a;

    border: 1px solid #16733a;
}


.urgent-donate-button:hover {
    background: #115d2e;

    border-color: #115d2e;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.urgent-bottom-cta {
    display: flex;

    justify-content: center;

    margin-top: 38px;
}


.urgent-bottom-button {
    min-height: 47px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 0 21px;

    border: 1px solid #b9cdbf;

    border-radius: 8px;

    color: #16733a;

    background: #ffffff;

    font-size: 13px;

    font-weight: 750;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}


.urgent-bottom-button:hover {
    color: #ffffff;

    background: #16733a;

    border-color: #16733a;
}


/* =========================================================
   FILTER ANIMATION
========================================================= */

.urgent-cause-card.filter-hidden {
    display: none;
}
/* =========================================================
   04. WHERE YOUR DONATION GOES
========================================================= */

.donation-journey-section {
    position: relative;

    padding: 115px 0 120px;

    background: #ffffff;

    overflow: hidden;
}


.donation-journey-container {
    width: min(1280px, 92%);

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.donation-journey-header {
    max-width: 780px;

    margin: 0 auto 65px;

    text-align: center;
}


.donation-journey-header .section-eyebrow {
    justify-content: center;
}


.donation-journey-title {
    margin: 0;

    color: #142019;

    font-size: clamp(
        36px,
        4.5vw,
        58px
    );

    font-weight: 750;

    line-height: 1.07;

    letter-spacing: -2px;
}


.donation-journey-title span {
    display: block;

    color: #16733a;
}


.donation-journey-description {
    max-width: 650px;

    margin: 19px auto 0;

    color: #66736b;

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.donation-journey-layout {
    display: grid;

    grid-template-columns:
        minmax(350px, 0.85fr)
        minmax(0, 1.15fr);

    align-items: center;

    gap: 75px;
}


/* =========================================================
   LEFT VISUAL
========================================================= */

.donation-journey-visual {
    position: relative;

    min-height: 555px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.donation-journey-visual::before {
    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(22, 115, 58, 0.10),
            rgba(22, 115, 58, 0.025) 62%,
            transparent 72%
        );
}


/* =========================================================
   CENTRAL DONATION CIRCLE
========================================================= */

.donation-journey-circle {
    position: relative;

    z-index: 4;

    width: 285px;

    height: 285px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f0f7f2
        );

    border: 1px solid #dbe8df;

    box-shadow:
        0 28px 70px rgba(24, 59, 38, 0.12);
}


.donation-journey-circle::before {
    content: "";

    position: absolute;

    inset: 15px;

    border: 1px dashed #b8cfbf;

    border-radius: 50%;
}


.donation-circle-content {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;
}


.donation-circle-small {
    color: #16733a;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.donation-circle-content strong {
    margin: 8px 0;

    color: #142019;

    font-size: 33px;

    font-weight: 750;

    letter-spacing: -1px;
}


/* =========================================================
   JOURNEY CONNECTION
========================================================= */

.donation-journey-line {
    position: absolute;

    z-index: 1;

    width: 390px;

    height: 390px;

    border: 1px dashed #c7d9cc;

    border-radius: 50%;

    transform: rotate(-28deg);
}


.journey-node {
    position: absolute;

    width: 14px;

    height: 14px;

    border-radius: 50%;

    background: #16733a;

    border: 3px solid #ffffff;

    box-shadow:
        0 0 0 1px #a9c7b2;
}


.journey-node-one {
    top: 15px;

    left: 105px;
}


.journey-node-two {
    right: 12px;

    top: 175px;
}


.journey-node-three {
    bottom: 30px;

    left: 100px;
}


/* =========================================================
   JOURNEY NOTE
========================================================= */

.donation-journey-note {
    position: absolute;

    z-index: 7;

    left: 0;

    bottom: 45px;

    width: 270px;

    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 17px;

    border: 1px solid #e0eae3;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.95);

    box-shadow:
        0 16px 35px rgba(27, 57, 38, 0.09);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);
}


.donation-note-icon {
    width: 24px;

    height: 24px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background: #16733a;

    font-size: 12px;

    font-weight: 800;
}


.donation-journey-note strong {
    display: block;

    color: #1b2920;

    font-size: 12px;

    font-weight: 750;
}


.donation-journey-note p {
    margin-top: 4px;

    color: #718078;

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.donation-support-content {
    min-width: 0;
}


.donation-support-intro {
    margin-bottom: 28px;
}


.donation-support-kicker {
    color: #16733a;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.donation-support-intro h3 {
    max-width: 530px;

    margin-top: 9px;

    color: #17221b;

    font-size: 30px;

    font-weight: 750;

    line-height: 1.2;

    letter-spacing: -0.8px;
}


.donation-support-intro p {
    max-width: 590px;

    margin-top: 12px;

    color: #68746d;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   SUPPORT GRID
========================================================= */

.donation-support-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}


.donation-support-card {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 19px;

    border: 1px solid #e1eae4;

    border-radius: 11px;

    background: #f9fbf9;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.donation-support-card:hover {
    transform: translateY(-3px);

    background: #ffffff;

    border-color: #c9dacd;

    box-shadow:
        0 12px 30px rgba(26, 55, 36, 0.07);
}


.donation-support-icon {
    width: 34px;

    height: 34px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    color: #16733a;

    background: #e3f0e6;

    font-size: 18px;

    font-weight: 500;
}


.donation-support-label {
    display: block;

    margin-bottom: 3px;

    color: #9aa49d;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


.donation-support-card h4 {
    color: #1b2920;

    font-size: 15px;

    font-weight: 750;
}


.donation-support-card p {
    margin-top: 5px;

    color: #748078;

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   TRANSPARENCY CTA
========================================================= */

.donation-transparency-cta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: 18px;

    padding: 17px 19px;

    border: 1px solid #cfe0d4;

    border-radius: 11px;

    background: #f1f8f3;
}


.transparency-cta-content {
    display: flex;

    align-items: flex-start;

    gap: 11px;
}


.transparency-cta-icon {
    width: 23px;

    height: 23px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background: #16733a;

    font-size: 11px;

    font-weight: 800;
}


.transparency-cta-content strong {
    display: block;

    color: #1c2a21;

    font-size: 12px;

    font-weight: 750;
}


.transparency-cta-content p {
    max-width: 430px;

    margin-top: 3px;

    color: #6e7b73;

    font-size: 10px;

    line-height: 1.5;
}


.transparency-cta-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    flex-shrink: 0;

    color: #16733a;

    font-size: 12px;

    font-weight: 750;

    white-space: nowrap;

    transition:
        gap 0.2s ease,
        color 0.2s ease;
}


.transparency-cta-link:hover {
    gap: 11px;

    color: #115d2e;
}

/* =========================================================
   05. REAL STORIES
========================================================= */

.real-stories-section {
    position: relative;

    padding: 115px 0 120px;

    background: #f7faf8;

    overflow: hidden;
}


.real-stories-container {
    width: min(1280px, 92%);

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.real-stories-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;
}


.real-stories-heading-content {
    max-width: 760px;
}


.real-stories-title {
    margin: 0;

    color: #142019;

    font-size: clamp(
        36px,
        4.5vw,
        57px
    );

    font-weight: 750;

    line-height: 1.06;

    letter-spacing: -2px;
}


.real-stories-title span {
    display: block;

    color: #16733a;
}


.real-stories-description {
    max-width: 640px;

    margin-top: 18px;

    color: #68756d;

    font-size: 16px;

    line-height: 1.7;
}


.real-stories-view-all {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    flex-shrink: 0;

    color: #16733a;

    font-size: 14px;

    font-weight: 750;

    transition:
        gap 0.2s ease,
        color 0.2s ease;
}


.real-stories-view-all:hover {
    gap: 13px;

    color: #115d2e;
}


/* =========================================================
   SLIDER
========================================================= */

.real-stories-slider-wrapper {
    position: relative;
}


.real-stories-slider {
    display: flex;

    gap: 22px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    padding: 5px 2px 25px;
}


.real-stories-slider::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   STORY CARD
========================================================= */

.real-story-card {
    flex: 0 0 calc(
        (100% - 44px) / 3
    );

    overflow: hidden;

    scroll-snap-align: start;

    background: #ffffff;

    border: 1px solid #e1e9e4;

    border-radius: 16px;

    box-shadow:
        0 10px 34px rgba(25, 55, 36, 0.055);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.real-story-card:hover {
    transform: translateY(-5px);

    border-color: #c5d8cb;

    box-shadow:
        0 20px 48px rgba(25, 55, 36, 0.10);
}


/* =========================================================
   STORY MEDIA
========================================================= */

.real-story-media {
    height: 255px;

    overflow: hidden;
}


.real-story-placeholder {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 15px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #dcece2,
            #f7faf8 58%,
            #e5efe8
        );
}


.real-story-placeholder::before {
    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    top: -120px;

    right: -70px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.58);
}


.real-story-placeholder::after {
    content: "";

    position: absolute;

    width: 190px;

    height: 190px;

    bottom: -105px;

    left: -65px;

    border-radius: 50%;

    background:
        rgba(22, 115, 58, 0.10);
}


.real-story-placeholder-mark {
    position: relative;

    z-index: 2;

    width: 76px;

    height: 76px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #16733a;

    background: rgba(255, 255, 255, 0.85);

    border: 1px solid rgba(255, 255, 255, 0.95);

    box-shadow:
        0 12px 30px rgba(25, 55, 36, 0.08);

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 1px;
}


.real-story-placeholder > span {
    position: relative;

    z-index: 2;

    padding: 7px 12px;

    border-radius: 50px;

    color: #16733a;

    background: rgba(255, 255, 255, 0.88);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.3px;
}


/* =========================================================
   STORY CONTENT
========================================================= */

.real-story-content {
    padding: 24px 24px 22px;
}


.real-story-meta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}


.real-story-meta span:first-child {
    color: #16733a;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


.real-story-meta span:last-child {
    color: #a0aaa3;

    font-size: 10px;

    font-weight: 750;
}


.real-story-title {
    margin-top: 11px;

    color: #17221b;

    font-size: 22px;

    font-weight: 750;

    line-height: 1.2;

    letter-spacing: -0.5px;
}


.real-story-excerpt {
    min-height: 69px;

    margin-top: 12px;

    color: #69766e;

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   STORY FOOTER
========================================================= */

.real-story-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-top: 21px;

    padding-top: 17px;

    border-top: 1px solid #edf1ee;
}


.real-story-status {
    color: #8b958e;

    font-size: 9px;

    font-weight: 700;

    line-height: 1.4;

    text-transform: uppercase;

    letter-spacing: 0.6px;
}


.real-story-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    flex-shrink: 0;

    color: #16733a;

    font-size: 11px;

    font-weight: 750;

    transition:
        gap 0.2s ease,
        color 0.2s ease;
}


.real-story-link:hover {
    gap: 11px;

    color: #115d2e;
}


/* =========================================================
   SLIDER ARROWS
========================================================= */

.real-stories-arrow {
    position: absolute;

    top: 50%;

    z-index: 10;

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #dce5df;

    border-radius: 50%;

    color: #16733a;

    background: rgba(255, 255, 255, 0.97);

    box-shadow:
        0 8px 25px rgba(24, 52, 35, 0.10);

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.real-stories-arrow:hover {
    color: #ffffff;

    background: #16733a;

    transform:
        translateY(-50%)
        scale(1.04);
}


.real-stories-prev {
    left: -22px;
}


.real-stories-next {
    right: -22px;
}


/* =========================================================
   DOTS
========================================================= */

.real-stories-dots {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin-top: 11px;
}


.real-story-dot {
    width: 7px;

    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #cbd7cf;

    cursor: pointer;

    transition:
        width 0.2s ease,
        background 0.2s ease;
}


.real-story-dot.active {
    width: 22px;

    border-radius: 10px;

    background: #16733a;
}


/* =========================================================
   BOTTOM
========================================================= */

.real-stories-bottom {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 17px;

    margin-top: 32px;

    text-align: center;
}


.real-stories-bottom p {
    color: #7b877f;

    font-size: 11px;
}


.real-stories-bottom-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #16733a;

    font-size: 12px;

    font-weight: 750;

    white-space: nowrap;
}


.real-stories-bottom-link:hover {
    text-decoration: underline;
}
/* =========================================================
   06. BENEFICIARY STORIES
========================================================= */

.beneficiary-stories-section {
    position: relative;

    padding: 115px 0 120px;

    background: #ffffff;

    overflow: hidden;
}


.beneficiary-stories-container {
    width: min(1280px, 92%);

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.beneficiary-stories-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;
}


.beneficiary-heading-content {
    max-width: 760px;
}


.beneficiary-eyebrow {
    margin-bottom: 17px;
}


.beneficiary-stories-title {
    margin: 0;

    color: #142019;

    font-size: clamp(
        36px,
        4.5vw,
        57px
    );

    font-weight: 750;

    line-height: 1.06;

    letter-spacing: -2px;
}


.beneficiary-stories-title span {
    display: block;

    color: #16733a;
}


.beneficiary-stories-description {
    max-width: 640px;

    margin-top: 18px;

    color: #68756d;

    font-size: 16px;

    line-height: 1.7;
}


.beneficiary-view-all {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    flex-shrink: 0;

    color: #16733a;

    font-size: 14px;

    font-weight: 750;

    transition:
        gap 0.2s ease,
        color 0.2s ease;
}


.beneficiary-view-all:hover {
    gap: 13px;

    color: #115d2e;
}


/* =========================================================
   SLIDER
========================================================= */

.beneficiary-slider-wrapper {
    position: relative;
}


.beneficiary-slider {
    display: flex;

    gap: 22px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    padding: 5px 2px 25px;
}


.beneficiary-slider::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   CARD
========================================================= */

.beneficiary-story-card {
    flex: 0 0 calc(
        (100% - 44px) / 3
    );

    overflow: hidden;

    scroll-snap-align: start;

    background: #ffffff;

    border: 1px solid #e1e9e4;

    border-radius: 16px;

    box-shadow:
        0 10px 34px rgba(25, 55, 36, 0.055);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.beneficiary-story-card:hover {
    transform: translateY(-5px);

    border-color: #c5d8cb;

    box-shadow:
        0 20px 48px rgba(25, 55, 36, 0.10);
}


/* =========================================================
   MEDIA
========================================================= */

.beneficiary-story-media {
    position: relative;

    height: 260px;

    overflow: hidden;
}


.beneficiary-photo-placeholder {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 14px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #dcece2,
            #f7faf8 55%,
            #e3eee7
        );
}


.beneficiary-photo-placeholder::before {
    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    top: -130px;

    right: -70px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.62);
}


.beneficiary-photo-placeholder::after {
    content: "";

    position: absolute;

    width: 205px;

    height: 205px;

    bottom: -115px;

    left: -65px;

    border-radius: 50%;

    background:
        rgba(22, 115, 58, 0.10);
}


.beneficiary-placeholder-symbol {
    position: relative;

    z-index: 2;

    width: 78px;

    height: 78px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #16733a;

    background: rgba(255, 255, 255, 0.86);

    border: 1px solid rgba(255, 255, 255, 0.95);

    box-shadow:
        0 12px 30px rgba(25, 55, 36, 0.08);

    font-size: 26px;

    font-weight: 400;
}


.beneficiary-photo-placeholder > span {
    position: relative;

    z-index: 2;

    padding: 7px 12px;

    border-radius: 50px;

    color: #16733a;

    background: rgba(255, 255, 255, 0.90);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.25px;
}


/* =========================================================
   VERIFIED BADGE
========================================================= */

.beneficiary-verified-badge {
    position: absolute;

    top: 16px;

    left: 16px;

    z-index: 5;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 11px;

    border-radius: 50px;

    color: #ffffff;

    background: #16733a;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.6px;

    text-transform: uppercase;
}


.beneficiary-check {
    width: 16px;

    height: 16px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.18);

    font-size: 9px;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.beneficiary-story-content {
    padding: 24px 24px 23px;
}


.beneficiary-story-meta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}


.beneficiary-story-meta span:first-child {
    color: #16733a;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.25px;

    text-transform: uppercase;
}


.beneficiary-story-meta span:last-child {
    color: #a0aaa3;

    font-size: 10px;

    font-weight: 750;
}


.beneficiary-story-title {
    margin-top: 11px;

    color: #17221b;

    font-size: 22px;

    font-weight: 750;

    line-height: 1.2;

    letter-spacing: -0.5px;
}


.beneficiary-story-excerpt {
    min-height: 69px;

    margin-top: 12px;

    color: #69766e;

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   CAMPAIGN REFERENCE
========================================================= */

.beneficiary-campaign-reference {
    margin-top: 18px;

    padding: 12px 13px;

    border-left: 3px solid #16733a;

    background: #f5f9f6;
}


.beneficiary-campaign-reference span {
    display: block;

    color: #9aa49d;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.beneficiary-campaign-reference strong {
    display: block;

    margin-top: 3px;

    color: #526058;

    font-size: 10px;

    font-weight: 650;
}


/* =========================================================
   STORY LINK
========================================================= */

.beneficiary-story-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: 18px;

    color: #16733a;

    font-size: 12px;

    font-weight: 750;

    transition:
        gap 0.2s ease,
        color 0.2s ease;
}


.beneficiary-story-link:hover {
    gap: 11px;

    color: #115d2e;
}


/* =========================================================
   ARROWS
========================================================= */

.beneficiary-slider-arrow {
    position: absolute;

    top: 50%;

    z-index: 10;

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #dce5df;

    border-radius: 50%;

    color: #16733a;

    background: rgba(255, 255, 255, 0.97);

    box-shadow:
        0 8px 25px rgba(24, 52, 35, 0.10);

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.beneficiary-slider-arrow:hover {
    color: #ffffff;

    background: #16733a;

    transform:
        translateY(-50%)
        scale(1.04);
}


.beneficiary-slider-prev {
    left: -22px;
}


.beneficiary-slider-next {
    right: -22px;
}


/* =========================================================
   DOTS
========================================================= */

.beneficiary-slider-dots {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin-top: 11px;
}


.beneficiary-slider-dot {
    width: 7px;

    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #cbd7cf;

    cursor: pointer;

    transition:
        width 0.2s ease,
        background 0.2s ease;
}


.beneficiary-slider-dot.active {
    width: 22px;

    border-radius: 10px;

    background: #16733a;
}


/* =========================================================
   PRIVACY / CONSENT NOTE
========================================================= */

.beneficiary-story-note {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: 35px;

    padding: 17px 19px;

    border: 1px solid #dce8df;

    border-radius: 11px;

    background: #f7faf8;
}


.beneficiary-note-content {
    display: flex;

    align-items: flex-start;

    gap: 11px;
}


.beneficiary-note-icon {
    width: 23px;

    height: 23px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background: #16733a;

    font-size: 11px;

    font-weight: 800;
}


.beneficiary-note-content strong {
    display: block;

    color: #26342b;

    font-size: 12px;

    font-weight: 750;
}


.beneficiary-note-content p {
    margin-top: 3px;

    color: #758179;

    font-size: 10px;

    line-height: 1.5;
}


.beneficiary-note-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    flex-shrink: 0;

    color: #16733a;

    font-size: 11px;

    font-weight: 750;

    white-space: nowrap;
}


.beneficiary-note-link:hover {
    text-decoration: underline;
}
/* =========================================================
   1.2.7 ACTIVE CAMPAIGNS
========================================================= */

.active-campaigns-section {
    padding: 100px 0;
    background: #f5f9f6;
    overflow: hidden;
}

.active-campaigns-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.active-campaigns-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 45px;
}

.active-campaigns-heading {
    max-width: 700px;
}

.active-campaigns-heading .section-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #16733a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.active-campaigns-heading h2 {
    margin: 0 0 16px;
    color: #142019;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -1px;
}

.active-campaigns-heading p {
    max-width: 650px;
    margin: 0;
    color: #637068;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================
   HEADER BUTTON
========================= */

.active-campaigns-header-action {
    flex-shrink: 0;
}

.section-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border: 1px solid #cbd9d0;
    border-radius: 10px;
    background: #ffffff;
    color: #16733a;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.section-outline-btn span {
    font-size: 18px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.section-outline-btn:hover {
    border-color: #16733a;
    transform: translateY(-2px);
}

.section-outline-btn:hover span {
    transform: translateX(4px);
}


/* =========================
   SLIDER
========================= */

.active-campaigns-slider-wrapper {
    position: relative;
}

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


/* =========================
   CARD
========================= */

.active-campaign-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e1e9e4;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(20, 32, 25, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.active-campaign-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(20, 32, 25, 0.09);
}


/* =========================
   VISUAL
========================= */

.active-campaign-visual {
    position: relative;
    height: 230px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #e8f2eb 0%,
            #dcebe1 50%,
            #edf5ef 100%
        );
}

.active-campaign-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #6b7b71;
    text-align: center;
}

.active-campaign-placeholder span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.active-campaign-placeholder strong {
    color: #314238;
    font-size: 15px;
    font-weight: 700;
}


/* =========================
   STATUS
========================= */

.active-campaign-status {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: #ffffff;
    color: #16733a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 16px rgba(20, 32, 25, 0.08);
}


/* =========================
   CONTENT
========================= */

.active-campaign-content {
    padding: 25px;
}

.active-campaign-category {
    display: inline-block;
    margin-bottom: 10px;
    color: #16733a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.active-campaign-content h3 {
    margin: 0 0 11px;
    color: #17221b;
    font-size: 22px;
    line-height: 1.3;
}

.active-campaign-content p {
    min-height: 54px;
    margin: 0 0 23px;
    color: #68756e;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================
   PROGRESS
========================= */

.active-campaign-progress {
    margin-bottom: 23px;
}

.active-campaign-progress-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 8px;
    color: #718078;
    font-size: 11px;
    font-weight: 600;
}

.active-campaign-progress-track {
    width: 100%;
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: #e5ede8;
}

.active-campaign-progress-fill {
    height: 100%;
    border-radius: inherit;
    background: #16733a;
    transition: width 0.4s ease;
}


/* =========================
   ACTIONS
========================= */

.active-campaign-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
}

.active-campaign-view-btn,
.active-campaign-donate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 15px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.active-campaign-view-btn {
    border: 1px solid #d5e0d9;
    background: #ffffff;
    color: #314238;
}

.active-campaign-view-btn:hover {
    border-color: #16733a;
    color: #16733a;
}

.active-campaign-donate-btn {
    padding-left: 19px;
    padding-right: 19px;
    background: #16733a;
    color: #ffffff;
}

.active-campaign-donate-btn:hover {
    background: #125f30;
    transform: translateY(-2px);
}


/* =========================
   ARROWS
========================= */

.active-campaigns-arrow {
    position: absolute;
    top: 42%;
    z-index: 5;
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #d8e3dc;
    border-radius: 50%;
    background: #ffffff;
    color: #16733a;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 7px 20px rgba(20, 32, 25, 0.10);
    transition: all 0.25s ease;
}

.active-campaigns-arrow:hover {
    background: #16733a;
    color: #ffffff;
}

.active-campaigns-prev {
    left: -21px;
}

.active-campaigns-next {
    right: -21px;
}


/* =========================
   DOTS
========================= */

.active-campaigns-dots {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 25px;
}

.active-campaign-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #cbd8d0;
    cursor: pointer;
    transition: all 0.25s ease;
}

.active-campaign-dot.active {
    width: 22px;
    border-radius: 999px;
    background: #16733a;
}


/* =========================
   NOTE
========================= */

.active-campaigns-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 38px;
    text-align: center;
}

.active-campaigns-note span {
    color: #16733a;
    font-size: 14px;
}

.active-campaigns-note p {
    margin: 0;
    color: #718078;
    font-size: 12px;
    line-height: 1.6;
}

/* =========================================================
   1.2.8 OUR IMPACT
========================================================= */

.our-impact-section {
    position: relative;
    padding: 105px 0;
    background: #ffffff;
    overflow: hidden;
}

.our-impact-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.our-impact-header {
    max-width: 760px;
    margin: 0 auto 65px;
    text-align: center;
}

.our-impact-header .section-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #16733a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.our-impact-header h2 {
    margin: 0 0 17px;
    color: #142019;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.12;
    letter-spacing: -1.2px;
}

.our-impact-header p {
    max-width: 680px;
    margin: 0 auto;
    color: #65736b;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================
   MAIN LAYOUT
========================= */

.our-impact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 80px;
}


/* =========================
   IMPACT VISUAL
========================= */

.our-impact-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(420px, 100%);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
}

.impact-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.impact-circle-one {
    inset: 8%;
    border: 1px solid #d5e4da;
}

.impact-circle-two {
    inset: 18%;
    border: 1px dashed #bcd2c3;
}

.impact-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 54%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #f3f8f4;
    text-align: center;
    box-shadow: 0 20px 50px rgba(20, 32, 25, 0.07);
}

.impact-center-label {
    margin-bottom: 5px;
    color: #16733a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.impact-center strong {
    color: #142019;
    font-size: 38px;
    line-height: 1;
    letter-spacing: 1px;
}

.impact-center-text {
    margin-top: 15px;
    color: #68766e;
    font-size: 13px;
    line-height: 1.55;
}


/* =========================
   METRICS
========================= */

.our-impact-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.impact-metric-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 165px;
    padding: 22px;
    border: 1px solid #e1e9e4;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 7px 25px rgba(20, 32, 25, 0.045);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.impact-metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(20, 32, 25, 0.08);
}

.impact-metric-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: #eef6f0;
    color: #16733a;
}

.impact-metric-icon span {
    font-size: 11px;
    font-weight: 800;
}

.impact-metric-content {
    display: flex;
    flex-direction: column;
}

.impact-metric-content strong {
    margin-bottom: 5px;
    color: #17221b;
    font-size: 21px;
    line-height: 1.2;
}

.impact-metric-content > span {
    color: #16733a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.impact-metric-content p {
    margin: 12px 0 0;
    color: #718078;
    font-size: 12px;
    line-height: 1.6;
}


/* =========================
   IMPACT FOCUS
========================= */

.impact-focus-area {
    margin-top: 90px;
    padding-top: 65px;
    border-top: 1px solid #e5ece7;
}

.impact-focus-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.impact-focus-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #16733a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.impact-focus-heading h3 {
    margin: 0;
    color: #17221b;
    font-size: 28px;
    line-height: 1.25;
}


/* =========================
   FOCUS GRID
========================= */

.impact-focus-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #e1e9e4;
    border-bottom: 1px solid #e1e9e4;
}

.impact-focus-item {
    min-height: 190px;
    padding: 25px 22px;
    border-right: 1px solid #e1e9e4;
}

.impact-focus-item:last-child {
    border-right: 0;
}

.impact-focus-number {
    display: block;
    margin-bottom: 22px;
    color: #a0b0a6;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.impact-focus-item strong {
    display: block;
    margin-bottom: 9px;
    color: #17221b;
    font-size: 18px;
}

.impact-focus-item p {
    margin: 0;
    color: #718078;
    font-size: 13px;
    line-height: 1.65;
}


/* =========================
   NOTE
========================= */

.our-impact-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
    text-align: center;
}

.our-impact-note > span {
    color: #16733a;
    font-size: 14px;
}

.our-impact-note p {
    margin: 0;
    color: #718078;
    font-size: 12px;
}

.our-impact-note a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #16733a;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.our-impact-note a span {
    font-size: 15px;
    transition: transform 0.25s ease;
}

.our-impact-note a:hover span {
    transform: translateX(3px);
}
/* =========================================================
   1.2.9 HOW WE HELP
========================================================= */

.how-we-help-section {
    padding: 105px 0;
    background: #f5f9f6;
    overflow: hidden;
}

.how-we-help-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.how-we-help-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 65px;
}

.how-we-help-heading {
    max-width: 760px;
}

.how-we-help-heading .section-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #16733a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.how-we-help-heading h2 {
    margin: 0 0 17px;
    color: #142019;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.12;
    letter-spacing: -1.2px;
}

.how-we-help-heading p {
    max-width: 700px;
    margin: 0;
    color: #65736b;
    font-size: 16px;
    line-height: 1.75;
}

.how-we-help-intro-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    flex-shrink: 0;
    border: 1px solid #d2e1d7;
    border-radius: 50%;
    background: #ffffff;
    color: #16733a;
    box-shadow: 0 10px 30px rgba(20, 32, 25, 0.05);
}

.how-we-help-intro-mark span {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
}


/* =========================
   PROCESS
========================= */

.how-we-help-process {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 0;
}

.how-help-step {
    position: relative;
    min-width: 0;
    padding: 28px 25px;
    border: 1px solid #dfe8e2;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(20, 32, 25, 0.045);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.how-help-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 32px rgba(20, 32, 25, 0.08);
}

.how-help-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.how-help-number {
    color: #a1afa6;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.how-help-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #edf6ef;
}

.how-help-icon::before,
.how-help-icon::after,
.how-help-icon span {
    position: absolute;
    display: block;
    content: "";
    border-radius: 50%;
}

.how-help-icon::before {
    width: 18px;
    height: 18px;
    border: 2px solid #16733a;
}

.how-help-icon::after {
    width: 6px;
    height: 6px;
    background: #16733a;
}

.how-help-icon span {
    width: 26px;
    height: 26px;
    border: 1px dashed #9cbaa5;
}

.how-help-step-content {
    display: flex;
    flex-direction: column;
}

.how-help-label {
    margin-bottom: 9px;
    color: #16733a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.how-help-step-content h3 {
    margin: 0 0 12px;
    color: #17221b;
    font-size: 20px;
    line-height: 1.3;
}

.how-help-step-content p {
    margin: 0;
    color: #718078;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================
   CONNECTORS
========================= */

.how-help-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    color: #8ba092;
}

.how-help-connector span {
    font-size: 19px;
}


/* =========================
   SUPPORT AREAS
========================= */

.how-help-areas {
    margin-top: 85px;
    padding-top: 62px;
    border-top: 1px solid #dfe8e2;
}

.how-help-areas-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.how-help-areas-eyebrow {
    display: block;
    margin-bottom: 9px;
    color: #16733a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.how-help-areas-header h3 {
    margin: 0;
    color: #17221b;
    font-size: 28px;
    line-height: 1.25;
}

.how-help-areas-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #16733a;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.how-help-areas-link span {
    font-size: 17px;
    transition: transform 0.25s ease;
}

.how-help-areas-link:hover span {
    transform: translateX(4px);
}


/* =========================
   AREA GRID
========================= */

.how-help-area-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #dfe8e2;
    border-bottom: 1px solid #dfe8e2;
}

.how-help-area-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 25px 22px;
    border-right: 1px solid #dfe8e2;
    color: inherit;
    text-decoration: none;
    transition: background 0.25s ease;
}

.how-help-area-card:last-child {
    border-right: 0;
}

.how-help-area-card:hover {
    background: #ffffff;
}

.how-help-area-number {
    margin-bottom: 38px;
    color: #a1afa6;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.how-help-area-card strong {
    display: block;
    margin-bottom: 10px;
    color: #17221b;
    font-size: 18px;
}

.how-help-area-card p {
    max-width: 230px;
    margin: 0;
    color: #718078;
    font-size: 13px;
    line-height: 1.65;
}

.how-help-area-arrow {
    position: absolute;
    right: 20px;
    bottom: 21px;
    color: #16733a;
    font-size: 18px;
    transition: transform 0.25s ease;
}

.how-help-area-card:hover .how-help-area-arrow {
    transform: translate(3px, -3px);
}


/* =========================
   BOTTOM CTA
========================= */

.how-help-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 65px;
    padding: 35px 38px;
    border-radius: 18px;
    background: #17221b;
}

.how-help-bottom-content > span {
    display: block;
    margin-bottom: 9px;
    color: #9fc2a9;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.how-help-bottom-content h3 {
    max-width: 680px;
    margin: 0;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.35;
}

.how-help-donate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 150px;
    padding: 13px 20px;
    border-radius: 9px;
    background: #ffffff;
    color: #16733a;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
}

.how-help-donate-btn span {
    font-size: 17px;
    transition: transform 0.25s ease;
}

.how-help-donate-btn:hover {
    transform: translateY(-2px);
}

.how-help-donate-btn:hover span {
    transform: translateX(4px);
}


/* =========================
   NOTE
========================= */

.how-help-note {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 30px;
    text-align: center;
}

.how-help-note > span {
    color: #16733a;
    font-size: 14px;
}

.how-help-note p {
    margin: 0;
    color: #718078;
    font-size: 12px;
    line-height: 1.6;
}

.how-help-note a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #16733a;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.how-help-note a span {
    font-size: 15px;
    transition: transform 0.25s ease;
}

.how-help-note a:hover span {
    transform: translateX(3px);
}
/* =========================================================
   1.2.10 TRUST / TRANSPARENCY
========================================================= */

.trust-transparency-section {
    padding: 105px 0;
    background: #ffffff;
    overflow: hidden;
}

.trust-transparency-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.trust-transparency-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;
    margin-bottom: 55px;
}

.trust-transparency-heading {
    max-width: 760px;
}

.trust-transparency-heading .section-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #16733a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.trust-transparency-heading h2 {
    margin: 0 0 17px;
    color: #142019;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.12;
    letter-spacing: -1.2px;
}

.trust-transparency-heading p {
    max-width: 700px;
    margin: 0;
    color: #65736b;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================
   MAIN BUTTON
========================= */

.trust-transparency-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 185px;
    padding: 13px 19px;
    border: 1px solid #16733a;
    border-radius: 9px;
    background: #16733a;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.trust-transparency-main-btn span {
    font-size: 17px;
    transition: transform 0.25s ease;
}

.trust-transparency-main-btn:hover {
    background: #125f30;
    transform: translateY(-2px);
}

.trust-transparency-main-btn:hover span {
    transform: translateX(4px);
}


/* =========================
   TRUST PRINCIPLES
========================= */

.trust-principles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #dfe8e2;
    border-bottom: 1px solid #dfe8e2;
}

.trust-principle-card {
    min-height: 285px;
    padding: 27px 24px;
    border-right: 1px solid #dfe8e2;
    transition: background 0.25s ease;
}

.trust-principle-card:last-child {
    border-right: 0;
}

.trust-principle-card:hover {
    background: #f7faf8;
}

.trust-principle-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 55px;
}

.trust-principle-number {
    color: #a1afa6;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.trust-principle-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #edf6ef;
}

.trust-principle-icon::before {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid #16733a;
    border-radius: 5px;
    content: "";
}

.trust-principle-icon::after {
    position: absolute;
    width: 7px;
    height: 11px;
    border-right: 2px solid #16733a;
    border-bottom: 2px solid #16733a;
    transform: rotate(45deg) translate(-1px, -2px);
    content: "";
}

.trust-principle-content {
    display: flex;
    flex-direction: column;
}

.trust-principle-label {
    margin-bottom: 9px;
    color: #16733a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.trust-principle-content h3 {
    margin: 0 0 12px;
    color: #17221b;
    font-size: 20px;
    line-height: 1.3;
}

.trust-principle-content p {
    margin: 0;
    color: #718078;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================
   TRANSPARENCY PREVIEW
========================= */

.transparency-preview {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 60px;
    margin-top: 75px;
    padding: 42px;
    border: 1px solid #dfe8e2;
    border-radius: 18px;
    background: #f5f9f6;
}

.transparency-preview-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.transparency-preview-eyebrow {
    margin-bottom: 10px;
    color: #16733a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.transparency-preview-content h3 {
    max-width: 500px;
    margin: 0 0 13px;
    color: #17221b;
    font-size: 30px;
    line-height: 1.25;
}

.transparency-preview-content p {
    max-width: 560px;
    margin: 0 0 22px;
    color: #6d7a72;
    font-size: 14px;
    line-height: 1.7;
}

.transparency-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: #16733a;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.transparency-preview-link span {
    font-size: 16px;
    transition: transform 0.25s ease;
}

.transparency-preview-link:hover span {
    transform: translate(3px, -3px);
}


/* =========================
   PREVIEW LIST
========================= */

.transparency-preview-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.transparency-preview-item {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 92px;
    padding: 17px;
    border: 1px solid #dce7df;
    border-radius: 13px;
    background: #ffffff;
}

.transparency-preview-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #edf6ef;
    color: #16733a;
    font-size: 13px;
    font-weight: 900;
}

.transparency-preview-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.transparency-preview-item strong {
    color: #253229;
    font-size: 13px;
    line-height: 1.3;
}

.transparency-preview-item small {
    color: #7b8780;
    font-size: 11px;
    line-height: 1.4;
}


/* =========================
   POLICY LINKS
========================= */

.trust-policy-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 38px;
}

.trust-policy-heading {
    margin-right: 22px;
    color: #7a877f;
    font-size: 11px;
    font-weight: 700;
}

.trust-policy-links a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 17px;
    border-right: 1px solid #dfe8e2;
    color: #16733a;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.trust-policy-links a:last-child {
    border-right: 0;
}

.trust-policy-links a span {
    font-size: 14px;
    transition: transform 0.25s ease;
}

.trust-policy-links a:hover span {
    transform: translateX(3px);
}


/* =========================
   NOTE
========================= */

.trust-transparency-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 28px;
    text-align: center;
}

.trust-transparency-note > span {
    color: #16733a;
    font-size: 14px;
}

.trust-transparency-note p {
    margin: 0;
    color: #7a867f;
    font-size: 12px;
    line-height: 1.6;
}
/* =========================================================
   1.2.11 FINAL EMOTIONAL CTA
========================================================= */

.final-emotional-cta-section {
    padding: 95px 0 80px;
    background: #ffffff;
    overflow: hidden;
}

.final-emotional-cta-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================
   MAIN CTA CARD
========================= */

.final-emotional-cta-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    min-height: 475px;
    overflow: hidden;
    padding: 65px 70px;
    border-radius: 26px;
    background: #17221b;
    box-shadow: 0 22px 55px rgba(20, 32, 25, 0.13);
}


/* =========================
   DECORATIVE ORBITS
========================= */

.final-cta-orbit {
    position: absolute;
    border: 1px solid rgba(159, 194, 169, 0.16);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta-orbit-one {
    width: 430px;
    height: 430px;
    right: -180px;
    top: -180px;
}

.final-cta-orbit-two {
    width: 300px;
    height: 300px;
    right: -115px;
    top: -115px;
}


/* =========================
   CONTENT
========================= */

.final-emotional-cta-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.final-cta-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #a8c9b1;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.final-emotional-cta-content h2 {
    max-width: 680px;
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(38px, 4.4vw, 57px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.final-emotional-cta-content p {
    max-width: 610px;
    margin: 0;
    color: #bdc9c1;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   ACTIONS
========================= */

.final-emotional-cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.final-cta-primary-btn,
.final-cta-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
}

.final-cta-primary-btn {
    background: #ffffff;
    color: #16733a;
}

.final-cta-primary-btn span,
.final-cta-secondary-btn span {
    font-size: 17px;
    transition: transform 0.25s ease;
}

.final-cta-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.final-cta-primary-btn:hover span {
    transform: translateX(4px);
}

.final-cta-secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: transparent;
    color: #ffffff;
}

.final-cta-secondary-btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.07);
}

.final-cta-secondary-btn:hover span {
    transform: translate(3px, -3px);
}


/* =========================
   RIGHT VISUAL
========================= */

.final-emotional-cta-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}

.final-cta-message-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(300px, 100%);
    min-height: 315px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(8px);
}

.final-cta-message-small {
    margin-bottom: auto;
    color: #91b89d;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.final-cta-message-card strong {
    color: #ffffff;
    font-size: 31px;
    line-height: 1.16;
    letter-spacing: -0.5px;
}

.final-cta-message-line {
    width: 45px;
    height: 2px;
    margin: 23px 0 15px;
    background: #6eaa7e;
}

.final-cta-message-bottom {
    color: #aebbb2;
    font-size: 11px;
    line-height: 1.55;
}


/* =========================
   CLOSING STATEMENT
========================= */

.final-cta-closing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 850px;
    margin: 35px auto 0;
    text-align: center;
}

.final-cta-closing-mark {
    color: #16733a;
    font-size: 15px;
}

.final-cta-closing p {
    margin: 0;
    color: #718078;
    font-size: 12px;
    line-height: 1.65;
}

/* =========================================================
   GLOBAL FOOTER
========================================================= */

.site-footer {
    width: 100%;
    background: #142019;
    color: #ffffff;
    overflow: hidden;
}

.footer-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.footer-main {
    display: grid;
    grid-template-columns:
        minmax(250px, 1.7fr)
        minmax(105px, 0.8fr)
        minmax(115px, 0.9fr)
        minmax(115px, 0.9fr)
        minmax(220px, 1.3fr);

    column-gap: 38px;
    align-items: start;
    width: 100%;
    padding: 68px 0 58px;
}


/* =========================================================
   BRAND
========================================================= */

.footer-brand {
    min-width: 0;
    max-width: 310px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
}

.footer-logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 49px;
    height: 49px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%;
    background: #ffffff;
}

.footer-logo-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo-text strong {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.1;
}

.footer-logo-text small {
    color: #8fb49a;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.footer-brand-description {
    max-width: 285px;
    margin: 20px 0 24px;
    color: #a3b0a8;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   DONATE BUTTON
========================================================= */

.footer-donate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 43px;
    padding: 10px 18px;
    border-radius: 8px;
    background: #ffffff;
    color: #16733a;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-donate-btn span {
    font-size: 16px;
    transition: transform 0.25s ease;
}

.footer-donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.15);
}

.footer-donate-btn:hover span {
    transform: translateX(4px);
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    min-width: 0;
}

.footer-column h3 {
    margin: 2px 0 19px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column li {
    margin: 0;
    padding: 0;
}

.footer-column li a {
    display: inline-block;
    color: #9eaaa2;
    font-size: 12px;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column li a:hover {
    color: #ffffff;
}


/* =========================================================
   GET IN TOUCH
========================================================= */

.footer-connect {
    min-width: 0;
}

.footer-connect p {
    max-width: 245px;
    margin: 0 0 17px;
    color: #9eaaa2;
    font-size: 12px;
    line-height: 1.65;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #9fc3a9;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.footer-contact-link span {
    font-size: 15px;
    transition: transform 0.25s ease;
}

.footer-contact-link:hover span {
    transform: translate(3px, -3px);
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 21px;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    color: #aab7af;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-social:hover {
    border-color: #76a786;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}


/* =========================================================
   DIVIDER
========================================================= */

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.10);
}


/* =========================================================
   LEGAL LINKS
========================================================= */

.footer-legal {
    padding: 22px 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.footer-legal-links a {
    padding: 0 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    color: #7f8d84;
    font-size: 10px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:first-child {
    padding-left: 0;
}

.footer-legal-links a:last-child {
    padding-right: 0;
    border-right: 0;
}

.footer-legal-links a:hover {
    color: #ffffff;
}


/* =========================================================
   BOTTOM BAR
========================================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 19px 0 23px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
    margin: 0;
    color: #75837a;
    font-size: 10px;
    line-height: 1.5;
}

.footer-bottom-message {
    color: #8eaa97 !important;
    font-weight: 600;
}
/* =========================================================
   REUSABLE PUBLIC PAGE HEADER
========================================================= */

.public-page-header {
    width: 100%;
    padding: 55px 0 60px;
    border-bottom: 1px solid #e2e9e4;
    background: #f5f9f6;
}

.public-page-header-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================
   BREADCRUMB
========================= */

.public-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.public-breadcrumb a {
    color: #68766e;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.public-breadcrumb a:hover {
    color: #16733a;
}

.public-breadcrumb-separator {
    color: #aab5ae;
    font-size: 11px;
}

.public-breadcrumb-current {
    color: #16733a;
    font-size: 11px;
    font-weight: 700;
}


/* =========================
   PAGE HEADING
========================= */

.public-page-heading {
    max-width: 760px;
}

.public-page-eyebrow {
    display: inline-block;
    margin-bottom: 13px;
    color: #16733a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.public-page-heading h1 {
    margin: 0 0 15px;
    color: #142019;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.public-page-heading p {
    max-width: 680px;
    margin: 0;
    color: #68766e;
    font-size: 15px;
    line-height: 1.75;
}
/* =========================================================
   REUSABLE PUBLIC PAGE CONTENT
========================================================= */

.public-page-content {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 75px 0 90px;
}

.public-page-content-narrow {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.public-page-section {
    margin-bottom: 65px;
}

.public-page-section:last-child {
    margin-bottom: 0;
}

.public-page-section-title {
    margin: 0 0 15px;
    color: #142019;
    font-size: 30px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.public-page-section-text {
    margin: 0;
    color: #65736b;
    font-size: 14px;
    line-height: 1.8;
}