* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", Arial, sans-serif;
    background: #f7f5ef;
    color: #203b39;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}



/* NAVBAR */

.navbar {
    width: 100%;
    height: 80px;

    background: #faf9f6;

    border-bottom: 1px solid #dedbd3;

    position: fixed;
    z-index: 201;
}


.nav-container {
    width: calc(100% - 108px);
    max-width: 1680px;

    height: 100%;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}



/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 15px;

    font-size: 20px;
    font-weight: 600;

    letter-spacing: 1px;

    color: #253e3b;
}


.logo-box {
    width: 45px;
    height: 45px;

    border-radius: 11px;

    background: #278375;

    display: flex;
    align-items: center;
    justify-content: center;
}


.logo-box svg {
    width: 27px;
    height: 27px;

    fill: white;
    stroke: white;

    stroke-width: 1.8;
}



/* NAV LINKS */

.nav-links {
    display: flex;
    align-items: center;

    gap: 22px;

    margin-left: auto;
    margin-right: 27px;
}


.nav-links a {
    color: #617b79;

    font-size: 15px;
    font-weight: 600;

    transition: color 0.2s ease;
}


.nav-links a:hover {
    color: #258174;
}



/* NAV ACTIONS */

.nav-actions {
    display: flex;
    align-items: center;

    gap: 10px;
}


.notification-btn {
    width: 38px;
    height: 38px;

    background: #faf9f6;

    border: 1px solid #dedbd3;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}


.notification-btn svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: #263f3d;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}


.profile-btn {
    width: 32px;
    height: 32px;

    border: none;

    border-radius: 50%;

    background: #f6dfca;

    color: #263f3d;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;
}


.donate-btn {
    height: 48px;

    padding: 15px 27px;

    border: none;

    border-radius: 10px;

    background: #278375;

    color: white;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.donate-btn:hover {
    background: #216f63;

    transform: translateY(-1px);
}



/* HERO */

.hero {
    position: relative;

    min-height: calc(100vh - 114px);

    overflow: hidden;
    padding-left: 70px;
    padding-right: 70px;
    background: #f7f5ef;
}



/* Decorative peach circle */

.hero-circle {
    position: absolute;

    width: 580px;
    height: 580px;

    right: -90px;
    top: -180px;

    background: #f4dfcb;

    border-radius: 50%;

    z-index: 0;
}



/* HERO CONTAINER */

.hero-container {
    width: calc(100% - 70px);
    max-width: 1820px;

    min-height: calc(100vh - 114px);

    margin: auto;
    margin-top: 100px;
    margin-bottom: 70px;

    display: grid;

    grid-template-columns: 1fr 0.93fr;

    align-items: center;

    column-gap: 65px;

    position: relative;

    z-index: 2;
}



/* HERO LEFT */

.hero-left {
    padding-top: 8px;
}


.eyebrow {
    margin-bottom: 27px;

    color: #258174;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 3px;
}


.hero-left h1 {
    font-size: clamp(65px, 5.1vw, 98px);

    line-height: 0.98;

    letter-spacing: -5px;

    font-weight: 500;

    color: #203a38;
}


.hero-left h1 span {
    color: #28897b;
}



/* DESCRIPTION */

.hero-description {
    max-width: 600px;

    margin-top: 29px;

    color: #67817f;

    font-size: 18px;

    line-height: 1.5;

    letter-spacing: 0.1px;
}



/* BUTTONS */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 35px;
}


.primary-btn,
.secondary-btn {
    height: 50px;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 13px;

    font-weight: 600;
}


.primary-btn {
    padding: 0 22px;

    gap: 15px;

    background: #278375;

    color: white;
}


.primary-btn svg {
    width: 20px;
    height: 20px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

    stroke-linecap: round;

    stroke-linejoin: round;
}


.secondary-btn {
    padding: 0 25px;

    background: transparent;

    border: 1px solid #ddd8cf;

    color: #283f3d;
}



/* TRUST ROW */

.trust-row {
    display: flex;

    align-items: center;

    gap: 27px;

    margin-top: 38px;
}


.trust-item {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #69817f;

    font-size: 13px;

    white-space: nowrap;
}


.trust-item svg {
    width: 21px;
    height: 21px;

    fill: none;

    stroke: #258174;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}



/* HERO RIGHT */

.hero-right {
    display: flex;

    justify-content: flex-end;

    align-items: center;
}



/* IMPACT CARD */

.impact-card {
    width: 100%;

    max-width: 1090px;

    height: 385px;

    position: relative;

    overflow: hidden;

    border-radius: 30px 30px 30px 5px;

    background: #278375;

    box-shadow: 0 12px 35px rgba(29, 90, 81, 0.08);
}



/* CARD LABEL */

.card-label {
    position: absolute;

    top: 55px;
    left: 43px;

    color: #ff8a42;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2.5px;

    z-index: 5;
}



/*AMOUNT BOX */

.amount-box {
    position: absolute;

    top: 30px;
    right: 30px;

    width: 150px;
    height: 100px;

    border-radius: 18px;

    background: #faf9f6;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    padding-left: 17px;

    z-index: 8;
}


.amount-box strong {
    color: #263d3b;

    font-size: 30px;

    line-height: 1;

    letter-spacing: -1px;
}


.amount-box span {
    margin-top: 10px;

    color: #78908d;

    font-size: 13px;
}



/* DECORATIVE RINGS */

.rings {
    position: absolute;

    width: 600px;
    height: 600px;

    right: -110px;
    bottom: -255px;
}


.ring {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.12);
}


.ring-1 {
    width: 600px;
    height: 600px;

    right: 0;
    bottom: 0;
}


.ring-2 {
    width: 470px;
    height: 470px;

    right: 65px;
    bottom: 65px;

    border-color: rgba(255, 255, 255, 0.1);
}


.ring-3 {
    width: 350px;
    height: 350px;

    right: 125px;
    bottom: 125px;

    border-color: rgba(255, 255, 255, 0.17);
}



/*  CARD CONTENT */

.card-content {
    position: absolute;

    left: 43px;
    bottom: 39px;

    z-index: 7;
}


.sparkle {
    width: 31px;
    height: 31px;

    margin-bottom: 10px;
}


.sparkle svg {
    width: 100%;
    height: 100%;

    fill: none;

    stroke: white;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}


.card-content h2 {
    color: white;

    font-size: 32px;
    letter-spacing: -2px;
    line-height: 30px;
    font-weight: 600;
}


.card-content p {
    margin-top: 0;

    max-width: 260px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 17px;

    line-height: 1.45;
}



/* HOVER EFFECTS */

.primary-btn,
.secondary-btn,
.donate-btn {
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.primary-btn:hover,
.donate-btn:hover {
    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(39, 131, 117, 0.18);
}


.secondary-btn:hover {
    background: #efede7;
}



/* TABLET */

@media (max-width: 1250px) {

    .nav-container,
    .hero-container {
        width: calc(100% - 60px);
    }


    .nav-links {
        gap: 25px;
    }


    .hero-container {
        column-gap: 35px;
    }


    .hero-left h1 {
        font-size: 70px;
    }


    .hero-description {
        font-size: 18px;
    }


    .impact-card {
        height: 520px;
    }


    .trust-row {
        gap: 15px;
    }


    .trust-item {
        font-size: 14px;
    }

}



/* TABLET / SMALL LAPTOP */

@media (max-width: 1000px) {

    .navbar {
        height: 90px;
    }


    .nav-container {
        width: calc(100% - 40px);
    }


    .nav-links {
        display: none;
    }


    .hero {
        min-height: auto;

        padding: 70px 0;
    }


    .hero-container {
        min-height: auto;

        grid-template-columns: 1fr;

        row-gap: 60px;
    }


    .hero-left h1 {
        font-size: clamp(60px, 10vw, 85px);
    }


    .hero-right {
        justify-content: center;
    }


    .impact-card {
        max-width: 760px;
    }

}



/* MOBILE */

@media (max-width: 600px) {

    .navbar {
        height: 78px;
    }


    .nav-container {
        width: calc(100% - 30px);
    }


    .logo {
        font-size: 23px;
        gap: 9px;
    }


    .logo-box {
        width: 42px;
        height: 42px;
    }


    .logo-box svg {
        width: 22px;
        height: 22px;
    }


    .notification-btn {
        width: 43px;
        height: 43px;

        border-radius: 11px;
    }


    .notification-btn svg {
        width: 21px;
        height: 21px;
    }


    .profile-btn {
        width: 42px;
        height: 42px;
    }


    .donate-btn {
        display: none;
    }


    .hero {
        padding: 55px 0;
    }


    .hero-container {
        width: calc(100% - 30px);

        row-gap: 45px;
    }


    .eyebrow {
        font-size: 9px;

        letter-spacing: 2px;

        margin-bottom: 20px;
    }


    .hero-left h1 {
        font-size: 55px;

        line-height: 0.98;

        letter-spacing: -3px;
    }


    .hero-description {
        font-size: 17px;

        line-height: 1.55;

        margin-top: 24px;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: stretch;

        margin-top: 28px;
    }


    .primary-btn,
    .secondary-btn {
        width: 100%;
    }


    .trust-row {
        flex-direction: column;

        align-items: flex-start;

        gap: 14px;

        margin-top: 28px;
    }


    .hero-circle {
        width: 350px;
        height: 350px;

        right: -180px;
        top: -80px;
    }


    .impact-card {
        height: 300px;

        border-radius: 25px;
    }


    .card-label {
        top: 30px;
        left: 25px;

        font-size: 3px;

        letter-spacing: 1.5px;
    }


    .amount-box {
        width: 100px;
        height: 80px;

        top: 25px;
        right: 20px;

        padding-left: 10px;
    }


    .amount-box strong {
        font-size: 25px;
    }


    .amount-box span {
        margin-top: 8px;

        font-size: 11px;
    }


    .card-content {
        left: 25px;
        bottom: 27px;
    }


    .card-content h2 {
        font-size: 34px;
    }


    .card-content p {
        font-size: 14px;

        max-width: 260px;
    }

}


/* CAUSES SECTION */

.causes-section {
    width: 100%;
    background: #f7eee5;
    font-family: Arial, Helvetica, sans-serif;
    color: #203d3b;
    padding-bottom: 80px;
    padding-top: 50px;
}


.causes-container {
    width: calc(100% - 80px);
    max-width: 1520px;
    margin: 0 auto;
    
}



/* HEADER */

.causes-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 38px;
}


.header-content {
    max-width: 1000px;    
}

.section-label {
    display: block;
    margin-bottom: 10px;

    color: #157b70;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}


.header-content h2 {
    margin: 0;

    color: #203b39;

    font-size: clamp(42px, 4vw, 40px);
    font-weight: 400;

    line-height: 1.05;
    letter-spacing: -2.2px;
}


.header-content p {
    margin: 15px 0 0;

    max-width: 950px;

    color: #517477;

    font-size: 16px;
    line-height: 1.55;
}



/* SEE ALL BUTTON */

.see-all-btn {
    flex-shrink: 0;

    min-width: 130px;
    height: 52px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    border: 1px solid #dcd3ca;
    border-radius: 13px;

    background: transparent;

    color: #203b39;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.25s ease;
}


.see-all-btn span {
    font-size: 20px;
    font-weight: 400;

    line-height: 1;

    transition: transform 0.25s ease;
}


.see-all-btn:hover {
    background: #ffffff;
    border-color: #cfc4b9;
}


.see-all-btn:hover span {
    transform: translateX(5px);
}



/* CARDS GRID */

.causes-grid {
    display: grid;
    
    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}



/*  CARD */

.cause-card {
    background: #ffffff;

    border-radius: 18px ;

    overflow: hidden;

    min-width: 0;

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.cause-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(32, 61, 59, 0.10);
}



/* COLORED IMAGE AREA*/

.cause-image {
    height: 170px;

    position: relative;

    overflow: hidden;

    display: flex;
    align-items: flex-end;

    padding: 0 22px 22px;
}


.cause-image h3 {
    position: relative;
    z-index: 5;

    margin: 0;

    color: #ffffff;

    font-size: 18px;
    font-weight: 700;
}



/* Health */

.health {
    background:
        linear-gradient(
            135deg,
            #278b80 0%,
            #47ad9d 100%
        );
}


/* Education */

.education {
    background:
        linear-gradient(
            135deg,
            #dd8440 0%,
            #efa16e 100%
        );
}


/* Environment */

.environment {
    background:
        linear-gradient(
            135deg,
            #a47b2e 0%,
            #d4a74e 100%
        );
}



/* DECORATIVE CIRCLES */

.circle {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.circle-one {
    width: 155px;
    height: 155px;

    right: -28px;
    top: 24px;

    border: 1px solid rgba(255, 255, 255, 0.25);
}


.circle-two {
    width: 100px;
    height: 100px;

    right: 65px;
    bottom: -42px;

    background: rgba(215, 196, 112, 0.48);
}


.education .circle-two {
    background: rgba(242, 167, 102, 0.55);
}


.environment .circle-two {
    background: rgba(231, 153, 73, 0.55);
}



/* CARD CONTENT */

.cause-content {
    padding: 22px 23px 24px;
}



/* ORGANISATION */

.organisation-row {
    display: flex;

    align-items: center;

    gap: 10px;

    min-height: 34px;

    flex-wrap: wrap;
}


.org-avatar {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #f8dfce;

    color: #247d73;

    font-size: 12px;
    font-weight: 600;
}


.organisation-name {
    color: #527477;

    font-size: 10px;

    white-space: nowrap;
}


.verified {
    display: flex;
    align-items: center;
    gap: 5px;

    color: #168176;

    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;
}


.verified-icon {
    width: 14px;
    height: 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1.5px solid #168176;
    border-radius: 50%;

    font-size: 9px;
}



/* CARD TITLE */

.cause-content h4 {
    margin: 17px 0 12px;

    color: #173a38;

    font-size: 20px;
    font-weight: 400;

    line-height: 1.2;

    letter-spacing: -0.8px;
}



/* DESCRIPTION*/

.cause-description {
    margin: 0;

    min-height: 94px;

    color: #56797b;

    font-size: 12px;

    line-height: 1.5;
}


.progress-bar {
    width: 100%;
    height: 8px;

    overflow: hidden;

    border-radius: 20px;

    background: #e9e4de;
}


.progress-fill {
    height: 100%;

    border-radius: inherit;

    background: #ed823c;
}


.amount-row {
    display: flex;

    justify-content: space-between;

    gap: 15px;

    margin-top: 9px;

    color: #527477;

    font-size: 14px;

    line-height: 1.4;
}


.amount-row span:last-child {
    text-align: right;
}



/* TABLET*/

@media (max-width: 1050px) {

    .causes-container {
        width: calc(100% - 50px);
    }


    .causes-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .cause-card:last-child {
        display: none;
    }


    .header-content p {
        font-size: 18px;
    }

}



/*  MOBILE */

@media (max-width: 700px) {

    .causes-section {
        padding: 40px 0 55px;
    }


    .causes-container {
        width: calc(100% - 32px);
    }


    .causes-header {
        flex-direction: column;
        align-items: flex-start;

        gap: 25px;

        margin-bottom: 30px;
    }


    .section-label {
        font-size: 11px;
        letter-spacing: 2px;

        margin-bottom: 12px;
    }


    .header-content h2 {
        font-size: 38px;

        letter-spacing: -1.5px;
    }


    .header-content p {
        margin-top: 16px;

        font-size: 16px;

        line-height: 1.5;
    }


    .see-all-btn {
        width: 100%;
        height: 52px;
    }


    .causes-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .cause-card:last-child {
        display: block;
    }


    .cause-image {
        height: 180px;
    }


    .cause-content {
        padding: 20px 18px 22px;
    }


    .organisation-row {
        gap: 8px;
    }


    .organisation-name {
        font-size: 13px;
    }


    .verified {
        width: 100%;
        margin-left: 43px;

        margin-top: -5px;

        font-size: 12px;
    }


    .cause-content h4 {
        font-size: 22px;

        margin-top: 16px;
    }


    .cause-description {
        min-height: auto;

        font-size: 15px;
    }


    .amount-row {
        font-size: 13px;
    }

}



/* SMALL MOBILE*/

@media (max-width: 400px) {

    .causes-container {
        width: calc(100% - 24px);
    }


    .header-content h2 {
        font-size: 34px;
    }


    .cause-image {
        height: 165px;
    }


    .cause-content h4 {
        font-size: 21px;
    }

}

/* TRUST / STORY SECTION */

.trust-section {
    width: 100%;
    background: #f8f5f0;
    padding: 88px 0;
}


.trust-container {
    width: calc(100% - 110px);
    max-width: 1520px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.55fr 1fr;

    gap: 24px;
}



/* LEFT STORY CARD */

.story-card {
    min-height: 200px;

    border-radius: 25px;

    background: #278477;

    overflow: hidden;

    position: relative;
}


.story-content {
    height: 100%;

    padding: 88px 43px 40px;

    max-width: 550px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.story-label,
.proof-label {
    color: #f28542;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.story-card h2 {
    margin: 20px 0 8px;

    color: white;

    font-size: clamp(30px, 2.7vw, 45px);

    font-weight: 400;

    line-height: 0.99;

    letter-spacing: -2.5px;
}


.story-card p {
    margin: 0;

    max-width: 700px;

    color: #d7efeb;

    font-size: 15px;

    line-height: 1.0;
}


.story-btn {
    margin-top: 20px;

    padding: 12px 22px;

    display: inline-flex;
    align-items: center;
    gap: 14px;

    border-radius: 10px;

    background: #f9e4d1;

    color: #173a38;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: 0.25s ease;
}


.story-btn span {
    font-size: 20px;

    transition: transform 0.25s ease;
}


.story-btn:hover {
    transform: translateY(-2px);
}


.story-btn:hover span {
    transform: translateX(5px);
}



/* RIGHT PROOF CARD*/

.proof-card {
    min-height: 200px;

    padding: 38px 36px;

    border-radius: 25px;

    background: #f4ddcb;

    display: flex;
    flex-direction: column;

    color: #173a38;
}


.proof-label {
    color: #167c72;
}


.proof-card h2 {
    margin: 8px 0 0;

    max-width: 360px;

    font-size: clamp(25px, 2.5vw, 37px);

    font-weight: 300;

    line-height: 1.0;

    letter-spacing: -2px;
}


.proof-bottom {
    margin-top: 65px;
}


.proof-bottom h3 {
    margin: 0 0 15px;

    font-size: 18px;

    font-weight: 400;

    line-height: 1.3;
}


.proof-bottom p {
    margin: 0;

    max-width: 360px;

    color: #638082;

    font-size: 14px;

    line-height: 1.5;
}


.proof-btn {
    margin-top: 12px;

    padding: 10px 18px;

    display: inline-block;

    border: 1px solid #dfcfc0;

    border-radius: 11px;

    color: #173a38;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: 0.25s ease;
}


.proof-btn:hover {
    background: rgba(255,255,255,0.35);
}



/* MOBILE */

@media (max-width: 900px) {

    .trust-section {
        padding: 55px 0;
    }


    .trust-container {
        width: calc(100% - 32px);

        grid-template-columns: 1fr;
    }


    .story-card,
    .proof-card {
        min-height: auto;
    }


    .story-content {
        padding: 55px 28px 35px;
    }


    .story-card h2 {
        font-size: 38px;
    }


    .story-card p {
        font-size: 17px;
    }


    .proof-card {
        padding: 35px 28px;
        min-height: 420px;
    }


    .proof-card h2 {
        font-size: 37px;
    }

}

/* DONATION CTA SECTION */

.donation-section {
    width: 100%;

    background: #f8f5f0;

    padding: 95px 20px 105px;

    border-bottom: 1px solid #ddd8d1;
}


.donation-container {
    max-width: 1050px;

    margin: 0 auto;

    text-align: center;
}


.donation-label {
    display: block;

    margin-bottom: 28px;

    color: #147b72;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.donation-container h2 {
    margin: 0;

    color: #203b39;

    font-size: clamp(42px, 4.3vw, 57px);

    font-weight: 400;

    line-height: 1.25;

    letter-spacing: -2.5px;
}


.donation-container p {
    margin: 28px 0 32px;

    color: #5a7b7d;

    font-size: 20px;

    line-height: 1.5;
}


.donation-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 16px 22px;

    min-width: 220px;

    border-radius: 12px;

    background: #278477;

    color: white;

    text-decoration: none;

    font-size: 17px;

    font-weight: 700;

    transition: all 0.25s ease;
}


.donation-btn span {
    font-size: 18px;
}


.donation-btn:hover {
    background: #206f65;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(39,132,119,0.18);
}



/* MOBILE */

@media (max-width: 600px) {

    .donation-section {
        padding: 65px 20px 70px;
    }


    .donation-container h2 {
        font-size: 37px;

        line-height: 1.15;

        letter-spacing: -1.5px;
    }


    .donation-container h2 br {
        display: none;
    }


    .donation-container p {
        font-size: 17px;
    }


    .donation-btn {
        width: 100%;

        max-width: 300px;
    }

}

/* ========================================
   OUR PARTNERS SECTION
======================================== */

.partners-section {
    width: 100%;

    background: #f7eee5;

    padding: 92px 0 90px;
}


.partners-container {
    width: calc(100% - 110px);

    max-width: 1520px;

    margin: 0 auto;
}



/* HEADER*/

.partners-header {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 30px;

    margin-bottom: 60px;
}


.partners-label {
    display: block;

    margin-bottom: 18px;

    color: #167b72;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.partners-header h2 {
    margin: 0;

    color: #203b39;

    font-size: clamp(32px, 3vw, 46px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -2.5px;
}


.partners-btn {
    min-width: 170px;

    padding: 16px 22px;

    border: 1px solid #ddd5cd;

    border-radius: 12px;

    color: #203b39;

    background: transparent;

    text-align: center;

    text-decoration: none;

    font-size: 16px;

    font-weight: 700;

    transition: 0.25s ease;
}


.partners-btn:hover {
    background: white;
}



/* NGO GRID */

.partners-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}



/*  NGO CARD */

.ngo-card {
    min-height: 280px;

    padding: 28px;

    background: #fffdfa;

    border: 1px solid #e5ded6;

    border-radius: 19px;

    display: flex;

    flex-direction: column;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.ngo-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(39, 61, 58, 0.08);
}



/* NGO TOP */

.ngo-top {
    display: flex;

    align-items: center;

    gap: 12px;
}


.ngo-avatar {
    width: 70px;
    height: 70px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 25px;

    background: #278477;

    color: white;

    font-size: 21px;

    font-weight: 700;
}


.ngo-name {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.ngo-name span {
    color: #5c7d7f;

    font-size: 15px;

    line-height: 1.3;
}


.ngo-name strong {
    color: #167a70;

    font-size: 13px;

    font-weight: 700;
}



/*  DESCRIPTION */

.ngo-description {
    margin: 27px 0 25px;

    max-width: 430px;

    color: #597b7d;

    font-size: 14px;

    line-height: 1.5;
}



/* LOCATION */

.ngo-location {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: auto;

    color: #5b7c7e;

    font-size: 12px;
}


.ngo-location span {
    font-size: 20px;

    color: #6b8585;
}



/* TAGS */

.ngo-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 25px;
}


.ngo-tags span {
    padding: 7px 11px;

    border-radius: 30px;

    background: #eee9e2;

    color: #58797b;

    font-size: 12px;

    font-weight: 600;
}



/* TABLET */

@media (max-width: 1000px) {

    .partners-container {
        width: calc(100% - 50px);
    }


    .partners-grid {
        grid-template-columns: 1fr 1fr;
    }


    .ngo-card:last-child {
        grid-column: span 2;
    }

}



/* MOBILE */

@media (max-width: 700px) {

    .partners-section {
        padding: 60px 0;
    }


    .partners-container {
        width: calc(100% - 32px);
    }


    .partners-header {
        flex-direction: column;

        align-items: flex-start;

        margin-bottom: 35px;
    }


    .partners-header h2 {
        font-size: 38px;
    }


    .partners-btn {
        width: 100%;
    }


    .partners-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .ngo-card:last-child {
        grid-column: auto;
    }


    .ngo-card {
        min-height: 300px;

        padding: 22px;
    }


    .ngo-avatar {
        width: 62px;
        height: 62px;

        border-radius: 20px;
    }

}

/*  FOOTER  */

.givehope-footer {
    width: 100%;

    background: #1c1c1c;

    color: #203b39;

    border-top: 1px solid #ddd8d1;

    font-family: Arial, Helvetica, sans-serif;
}

.footer-container {
    width: calc(100% - 110px);

    max-width: 1520px;

    margin: 0 auto;

    padding: 62px 0 55px;

    display: grid;

    grid-template-columns:
        1.65fr
        1fr
        1.25fr
        1fr;

    column-gap: 60px;
}



/* BRAND*/

.footer-brand {
    padding-right: 50px;
}


.footer-logo {
    display: inline-flex;

    flex-direction: column;

    align-items: flex-start;

    text-decoration: none;

    color: #203b39;
}


.footer-logo-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #278477;

    color: white;

    font-size: 23px;

    line-height: 1;
}


.footer-logo-name {
    margin-top: 6px;

    color: #527477;

    font-size: 17px;

    font-weight: 700;

    letter-spacing: -0.4px;
}


.footer-brand p {
    max-width: 330px;

    margin: 23px 0 0;

    color: #587a7c;

    font-size: 17px;

    line-height: 1.55;
}



/* COLUMNS */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.footer-column h3 {
    margin: 0 0 22px;

    color: #203b2a;

    font-size: 20px;

    font-weight: 400;

    line-height: 1.2;
}


.footer-column a {
    margin-bottom: 15px;

    color: #5b7d7f;

    text-decoration: none;

    font-size: 16px;

    line-height: 1.35;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.footer-column a:hover {
    color: #278477;

    transform: translateX(3px);
}


.footer-bottom {
    width: calc(100% - 110px);

    max-width: 1520px;

    margin: 0 auto;

    padding: 22px 0;

    border-top: 1px solid #ded9d2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    margin: 0;

    color: #789091;

    font-size: 13px;
}


.footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 25px;
}


.footer-bottom-links a {
    color: #789091;

    text-decoration: none;

    font-size: 13px;

    transition: color 0.2s ease;
}


.footer-bottom-links a:hover {
    color: #278477;
}



/* TABLET */

@media (max-width: 1000px) {

    .footer-container {
        width: calc(100% - 50px);

        grid-template-columns:
            1.5fr
            1fr
            1fr;

        row-gap: 50px;

        column-gap: 35px;
    }


    .footer-brand {
        grid-column: span 3;

        padding-right: 0;
    }


    .footer-bottom {
        width: calc(100% - 50px);
    }

}



/*  MOBILE */

@media (max-width: 650px) {

    .footer-container {
        width: calc(100% - 32px);

        padding: 48px 0 35px;

        grid-template-columns: 1fr 1fr;

        gap: 42px 25px;
    }


    .footer-brand {
        grid-column: span 2;
    }


    .footer-brand p {
        max-width: 300px;

        font-size: 16px;
    }


    .footer-column h3 {
        margin-bottom: 18px;

        font-size: 18px;
    }


    .footer-column a {
        margin-bottom: 13px;

        font-size: 15px;
    }


    .footer-bottom {
        width: calc(100% - 32px);

        padding: 20px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }


    .footer-bottom-links {
        gap: 20px;
    }

}