@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');
:root {
    --navy:#00B3A1;
    --navy2:#123f68;
    --gold:#FF8A00;
    --teal:#198d8a;
    --cream:#fff8ec;
    --ink:#30445a;
    --white:#fff;
    --line:#dfe8ef;
    --shadow:0 18px 50px rgba(11,45,79,.12)
}

* {
    box-sizing:border-box
}

html {
    scroll-behavior:smooth
}

body {
    margin:0;
    font-family:'DM Sans',sans-serif;
    color:var(--ink);
    font-size:17px;
    line-height:1.75;
    background:#fff
}

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

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

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

.topbar {
    background:var(--navy);
    color:#eaf4fb;
    font-size:14px
}

.topbar .container {
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:8px 0;
    flex-wrap:wrap
}

.topbar a {
    color:#fff
}

.header {
    position:sticky;
    top:0;
    z-index:99;
    background:rgba(255,255,255,.97);
    box-shadow:0 4px 22px rgba(20,48,75,.08)
}

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

.brand {
    display:flex;
    align-items:center;
    gap:12px
}

.brand-mark {
    width:54px;
    height:54px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--gold),#f0c765);
    display:grid;
    place-items:center;
    color:var(--navy);
    font-size:27px;
    font-weight:800
}

.brand-text strong {
    display:block;
    color:var(--navy);
    font-size:24px;
    line-height:1
}

.brand-text span {
    display:block;
    font-size:11px;
    letter-spacing:1.4px;
    color:#5d7186;
    margin-top:5px
}

.menu {
    display:flex;
    align-items:center;
    gap:26px
}

.menu a {
    color:var(--navy);
    font-weight:600
}

.menu a:hover,.menu a.active {
    color:var(--gold)
}

.btn {
    display:inline-flex;
    align-items:center;
    gap:9px;
    background:var(--gold);
    color:#102f4b!important;
    padding:12px 20px;
    border-radius:8px;
    font-weight:700;
    box-shadow:0 8px 20px rgba(217,155,43,.25)
}

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

.menu-toggle {
    display:none;
    border:0;
    background:var(--navy);
    color:white;
    border-radius:8px;
    font-size:23px;
    padding:8px 12px
}

.hero {
    min-height:690px;
    display:flex;
    align-items:center;
    position:relative;
    background:linear-gradient(90deg,rgba(5,30,53,.91),rgba(5,30,53,.48)),url('images/sower-01.jpg') center/cover
}

.hero-content {
    max-width:730px;
    color:white;
    padding:90px 0
}

.eyebrow {
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
    color:#f6c869;
    font-size:14px
}

.hero h1,.page-hero h1 {
    font-family:'Playfair Display',serif;
    font-size:clamp(44px,6vw,76px);
    line-height:1.08;
    margin:18px 0;
    color:white
}

.hero p {
    font-size:20px;
    max-width:680px;
    color:#eef6fb
}

.hero-actions {
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:30px
}

.btn-outline {
    display:inline-flex;
    align-items:center;
    gap:8px;
    border:1px solid rgba(255,255,255,.7);
    color:#fff;
    padding:11px 20px;
    border-radius:8px;
    font-weight:700
}

.section {
    padding:90px 0
}

.section-soft {
    background:#f4f8fb

}

.section-cream {
    background:var(--cream)
}

.section-head {
    max-width:760px;
    margin-bottom:42px
}

.section-head.center {
    text-align:center;
    margin-left:auto;
    margin-right:auto
}

.section-head .kicker {
    color:var(--gold);
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:800
}

.section-head h2 {
    font-family:'Playfair Display',serif;
    color:var(--navy);
    font-size:clamp(34px,4vw,52px);
    line-height:1.2;
    margin:10px 0 15px
}

.section-head p {
    font-size:18px
}

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

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

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

.grid-4 {
    grid-template-columns:repeat(4,1fr)
}

.card {
    background:white;
    border-radius:16px;
    padding:30px;
    box-shadow:var(--shadow);
    border:1px solid #edf2f6
}

.icon {
    width:76px;
    height:76px;
    border-radius:18px;
    background:var(--cream);
    color:var(--gold);
    display:grid;
    place-items:center;
    font-size:36px;
    margin-bottom:20px
}

.card h3 {
    color:var(--navy);
    font-size:23px;
    line-height:1.3;
    margin:0 0 12px
}



.check-list {
    list-style:none;
    padding:0;
    margin:25px 0
}

.check-list li {
    margin:12px 0;
    padding-left:32px;
    position:relative
}

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

.stats {
    margin-top:-64px;
    position:relative;
    z-index:3
}

.stats-wrap {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:white;
    border-radius:16px;
    box-shadow:var(--shadow);
    overflow:hidden
}

.stat {
    text-align:center;
    padding:32px 20px;
    border-right:1px solid var(--line)
}

.stat:last-child {
    border:0
}

.stat strong {
    display:block;
    color:var(--navy);
    font-size:40px
}

.stat span {
    font-size:16px;
    font-weight: Bold;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#6f8090
}

.program-card {
    overflow:hidden;
    padding:0
}

.program-card img {
    height:240px;
    width:100%;
    object-fit:cover
}

.program-card .content {
    padding:28px
}

.program-card .num {
    color:var(--gold);
    font-weight:800;
    font-size:14px
}

.cta {
    background:linear-gradient(135deg,var(--navy),var(--navy2));
    border-radius:20px;
    padding:55px;
    color:white;
    display:flex;
    justify-content:space-between;
    gap:25px;
    align-items:center
}

.cta h2 {
    font-family:'Playfair Display',serif;
    font-size:40px;
    margin:0;
    color:white
}

.page-hero {
    min-height:420px;
    display:flex;
    align-items:center;
    text-align:center;
    background:linear-gradient(rgba(5,30,53,.82),rgba(5,30,53,.82)),url('images/sower-03.jpg') center/cover
}

.page-hero .container {
    color:white
}

.page-hero p {
    max-width:720px;
    margin:auto;
    font-size:19px
}

.content-prose h2,.content-prose h3 {
    color:var(--navy);
    font-family:'Playfair Display',serif
}

.content-prose h2 {
    font-size:38px
}

.content-prose h3 {
    font-size:28px
}

.content-prose p {
    margin:0 0 22px
}
/* ==========================================
   VISION & MISSION CARDS
========================================== */

.vision-card{
    min-height:360px;
    padding:45px 35px;
    border-radius:18px;
    display:flex;
    flex-direction:column;
    align-items:center;          /* Center everything */
    justify-content:center;
    text-align:center;
    transition:all .3s ease;
    background:#fff;
}

/* Vision Card */
.vision-card:nth-child(1){
    border-top:6px solid #00B3A1;
}

/* Mission Card */
.vision-card:nth-child(2){
    border-top:6px solid #FF8A00;
}

/* Icon */
.vision-card .icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:#fff6e8;
    font-size:38px;
    color:#ff8a00;
    flex-shrink:0;
}

/* Heading */
.vision-card h3{
    width:100%;
    margin:0 0 20px;
    font-size:34px;
    font-weight:700;
    text-align:center;
    color:#11b5aa;
}

/* Content */
.vision-card p{
    width:100%;
    margin:0;
    font-size:18px;
    line-height:1.9;
    text-align:center;
    color:#30445a;
}

/* Hover */
.vision-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}
.objectives li {
    margin-bottom:12px;

}

.program-list {
    display:grid;
    gap:30px
}

.program-row {
    display:grid;
    grid-template-columns:310px 1fr;
    background:white;
    border-radius:16px;
    overflow:hidden;
    box-shadow:var(--shadow)
}

.program-row img {
    width:100%;
    height:100%;
    min-height:300px;
    object-fit:cover
}

.program-row .content {
    padding:34px
}

.program-row h2 {
    color:var(--navy);
    font-size:29px;
    margin-top:0;
    line-height:1.25
}

.volunteer-hero-card {
    background:var(--cream);
    border-radius:20px;
    padding:44px
}

.gallery {
    columns:3 300px;
    column-gap:18px
}

.gallery a {
    display:block;
    margin:0 0 18px;
    break-inside:avoid;
    overflow:hidden;
    border-radius:14px;
    box-shadow:0 8px 25px rgba(11,45,79,.13)
}

.gallery img {
    width:100%;
    transition:.35s
}

.gallery a:hover img {
    transform:scale(1.04)
}

.contact-card {
    background:white;
    border-radius:18px;
    padding:34px;
    box-shadow:var(--shadow)
}

.contact-item {
    display:flex;
    gap:18px;
    margin:22px 0
}

.contact-item i {
    font-size:28px;
    color:var(--gold);
    width:34px
}

.bank-table {
    width:100%;
    border-collapse:collapse
}

.bank-table td {
    padding:12px;
    border-bottom:1px solid var(--line);
    vertical-align:top
}

.bank-table td:first-child {
    font-weight:700;
    color:var(--navy);
    width:38%
}



.fade {
    animation:fade .7s ease both
}

@keyframes fade {
    from {
        opacity:0;
        transform:translateY(15px)
    }
    to {
        opacity:1;
        transform:none
    }
}

@media(max-width:900px) {
    .menu-toggle {
        display:block
    }
    .menu {
        position:absolute;
        top:82px;
        left:0;
        right:0;
        background:white;
        display:none;
        flex-direction:column;
        align-items:flex-start;
        padding:25px 4%;
        box-shadow:0 20px 30px rgba(0,0,0,.1)
    }
    .menu.open {
        display:flex
    }
    .grid-3,.grid-4 {
        grid-template-columns:repeat(2,1fr)
    }
    
    .stats-wrap {
        grid-template-columns:repeat(2,1fr)
    }
    .program-row {
        grid-template-columns:1fr
    }
    .program-row img {
        height:320px
    }
    .cta {
        flex-direction:column;
        align-items:flex-start
    }
    .hero {
        min-height:620px
    }
    .topbar .container {
        justify-content:center
    }
    
}

@media(max-width:600px) {
    body {
        font-size:16px
    }
    .brand-text strong {
        font-size:20px
    }
    .brand-mark {
        width:46px;
        height:46px
    }
    .grid-3,.grid-4,.stats-wrap {
        grid-template-columns:1fr
    }
    .stat {
        border-right:0;
        border-bottom:1px solid var(--line)
    }
    .hero h1 {
        font-size:43px
    }
    .hero-content {
        padding:75px 0
    }
    .section {
        padding:65px 0
    }
    .cta {
        padding:32px
    }
    .cta h2 {
        font-size:32px
    }
    .page-hero {
        min-height:340px
    }
    .page-hero h1 {
        font-size:42px
    }
    .program-row .content,.card,.contact-card {
        padding:24px
    }
    
}

/* Clear image-only header banners */
.hero.image-only-hero {
    min-height:680px;
    background-image:url('images/sower-01.jpg');
    background-position:center center;
    background-size:cover;
    background-repeat:no-repeat;
}

.page-hero.image-only-page-hero {
    min-height:460px;
    background-position:center center;
    background-size:cover;
    background-repeat:no-repeat;
}

@media(max-width:900px) {
    .hero.image-only-hero {
        min-height:560px;
        background-position:center center;
    }
    .page-hero.image-only-page-hero {
        min-height:380px;
        background-position:center center;
    }
}

@media(max-width:600px) {
    .hero.image-only-hero {
        min-height:430px;
        background-position:center center;
    }
    .page-hero.image-only-page-hero {
        min-height:300px;
        background-position:center center;
    }
}

/* Home focus areas and programme icon enhancements */
.welcome-grid {
    align-items:center
}

.welcome-image {
    min-height:520px
}

.focus-grid {
    grid-template-columns:repeat(4,1fr)
}

.focus-card {
    height:100%;
    transition:transform .25s ease,box-shadow .25s ease
}

.focus-card:hover {
    transform:translateY(-7px)
}

.focus-card .icon {
    width:84px;
    height:84px;
    font-size:40px;
    border-radius:22px
}

.focus-card p {
    margin-bottom:0
}

.cta p {
    margin:10px 0 0;
    color:#dce9f3;
    max-width:680px
}

.program-row .content {
    position:relative
}

.program-icon {
    width:72px;
    height:72px;
    border-radius:18px;
    background:var(--cream);
    color:var(--gold);
    display:grid;
    place-items:center;
    font-size:34px;
    margin-bottom:18px;
    box-shadow:0 10px 25px rgba(11,45,79,.08)
}

@media(max-width:1050px) {
    .focus-grid {
        grid-template-columns:repeat(2,1fr)
    }
}

@media(max-width:600px) {
    .focus-grid {
        grid-template-columns:1fr
    }
    .welcome-image {
        min-height:360px
    }
    .focus-card .icon {
        width:76px;
        height:76px;
        font-size:36px
    }
}

/* Home page corrections requested */
.stats-wrap .stat strong {
    font-size:46px;
    line-height:1.1;
    font-weight:800;
}

.stats-wrap .stat span {
    font-size:16px;
    line-height:1.35;
    font-weight:700;
    letter-spacing:.7px;
    color:#50657a
}

.welcome-section .section-head .kicker {
    display:block;
    color: #FF8A00;
    font-size:24px;
    letter-spacing:1.1px;
    font-weight:800;
    margin-bottom:8px
}

.welcome-section .section-head h2 {
    font-size:clamp(30px,3.3vw,44px);
    line-height:1.18
}

.welcome-section .btn {
    color:#fff!important
}

@media(max-width:600px) {
    .stats-wrap .stat strong {
        font-size:40px
    }
    .stats-wrap .stat span {
        font-size:15px
    }
    .welcome-section .section-head .kicker {
        font-size:18px
    }
    .welcome-section .section-head h2 {
        font-size:30px
    }
}

/* Focus area card alignment corrections */
.focus-card .icon {
    margin-left: auto;
    margin-right: auto;
}

.focus-card h3 {
    min-height: 60px;
}

.focus-card h3 .heading-line {
    display: block;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .focus-card h3 {
        min-height: auto;
    }
}

/* Header desktop alignment correction */
@media (min-width: 901px) {
    .nav {
        width: min(1480px, 94%);
        gap: 32px;
    }

    .brand {
        flex: 0 0 auto;
    }

    .menu {
        flex: 1;
        width: 100%;
        gap: 32px;
    }

    .menu > a:first-child {
        margin-left: auto;
    }

    .menu > .btn {
        margin-left: auto;
    }

    .menu > a:not(.btn) {
        font-size: 19px;
        font-weight: 700;
        line-height: 1.2;
    }
}

/* Final focus-area alignment corrections */
.section-soft .section-head.center .kicker {
    display: block;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.focus-card {
    display: flex;
    flex-direction: column;
}

.focus-card .icon {
    color: #c98200;
}

.focus-card .icon i {
    color: #c98200;
}

.focus-card h3 {
    width: 100%;
    min-height: 60px;
    margin: 0 0 14px;
    text-align: left;
}

.focus-card p {
    width: 100%;
    margin: 0;
    text-align: left;
}

@media (max-width: 600px) {
    .section-soft .section-head.center .kicker {
        font-size: 16px;
    }

    .focus-card h3 {
        min-height: auto;
    }
}

/* Final requested focus section corrections */
.section-soft .section-head.center h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    text-transform: uppercase;
    text-align: center;
    color: #00B3A1;
}

.focus-card {
    padding-top: 28px;
}

.focus-card .icon {
    flex: 0 0 auto;
    margin: 0 auto 24px;
}

.focus-card h3 {
    flex: 0 0 60px;
    min-height: 60px;
    margin: 0 0 16px;
}

.focus-card p {
    flex: 1 1 auto;
    margin: 0;
}

@media (max-width: 768px) {
    .section-soft .section-head.center h2 {
        font-size: 30px;
        letter-spacing: -0.5px;
    }
}

@media (max-width: 600px) {
    .section-soft .section-head.center h2 {
        font-size: 26px;
        line-height: 1.2;
    }

    .focus-card h3 {
        flex-basis: auto;
        min-height: auto;
    }
}


/* Join the movement section alignment and image */
.cta {
    display: grid;
    grid-template-columns: minmax(0,1fr) 330px;
    align-items: center;
    gap: 48px;
    min-height: 250px;
}

.cta-content {
    text-align: left;
}

.cta-content .eyebrow,
.cta-content h2,
.cta-content p {
    text-align: left;
}

/* Eyebrow */
.cta-content .eyebrow {
    font-size: 18px;
    font-weight: 600;
}

/* Heading */
.cta-content h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin: 12px 0 20px;
}

/* Paragraph */
.cta-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Button */
.cta-content .btn {
    display: inline-flex;
    margin-top: 28px;
    font-size: 17px;
    font-weight: 600;
    padding: 14px 30px;
}

.cta-image-wrap {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.cta-image {
    width: 100%;
    max-width: 330px;
    height: 245px;
    display: block;
    object-fit: cover;
    border-radius: 18px;
}

@media(max-width:900px) {
    .cta {
        grid-template-columns:1fr;
        gap:32px;
    }

    .cta-image-wrap {
        justify-content:flex-start;
    }

    .cta-image {
        max-width:420px;
    }
}

@media(max-width:600px) {
    .cta {
        padding:34px 24px;
    }

    .cta h2 {
        font-size:32px;
    }

    .cta-image {
        max-width:100%;
        height:220px;
    }
}
section:has(.objectives) {
    padding: 70px 0;
    background: #f4f8fb;
}

section:has(.objectives) .section-head {
    margin-bottom: 40px;
}

section:has(.objectives) .section-head h2 {
    font-size: 48px;
    color: #123f68;
}

section:has(.objectives) .card {
    padding: 42px 48px;
    border-radius: 16px;
}

.objectives li {
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 1.7;


}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.form-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    font-size:18px;
    font-weight:700;
    color:#11269e;
    margin-bottom:8px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:14px 16px;
    font-size:16px;
    border:1px solid #d7dfe8;
    border-radius:10px;
    outline:none;
    transition:.3s;
    font-family:inherit;
    background:#fff;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#11269e;
    box-shadow:0 0 0 3px rgba(17,38,158,.15);
}

.form-group textarea{
    resize:vertical;
    min-height:180px;
}

.contact-form .btn{
    margin-top:10px;
    width:fit-content;
}

@media(max-width:768px){

.form-row{
    grid-template-columns:1fr;
}

.contact-form .btn{
    width:100%;
    justify-content:center;
}

}

/* =========================
   GET INVOLVED HERO
========================== */

.get-involved-hero {
    width: 100%;
    min-height: 540px;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* =========================
   PROJECTS SECTION
========================== */

.projects-section {
    padding: 70px 0 40px;
    background: #ffffff;
}

.involved-title {
    max-width: 980px;
    margin: 0 auto 45px;
    text-align: center;
}

.involved-title > span {
    display: block;

    margin-bottom: 22px;

    color: #d97400;

    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;

    text-transform: uppercase;
}

.title-line {
    width: 100%;
    height: 1px;

    margin-bottom: 28px;

    background: #6e9ed0;
}

.involved-title h1 {
    margin: 0 0 15px;

    color: #FF8A00;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.involved-title p {
    max-width: 900px;
    margin: 0 auto;

    color: #000000;

    font-size: 20px;
    line-height: 1.7;
}


/* Project Grid */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 34px 55px;

    max-width: 1000px;
    margin: 0 auto;
}

.project-item {
    margin: 0;
    text-align: center;
}

.project-item img {
    width: 100%;
    height: 270px;

    display: block;

    object-fit: cover;

    border-radius: 2px;
}

.project-item h2 {
    margin: 13px 0 0;

    color: #ed7800;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
}


/* =========================
   DONATION SECTION
========================== */

.donation-section {
    padding: 25px 0 60px;
    background: #ffffff;
}

.donation-heading {
    max-width: 960px;
    margin: 0 auto 35px;

    text-align: center;
}

.donation-heading h2 {
    margin: 0 0 18px;

    color: #FF8A00;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
}

.donation-heading p {
    margin: 0;
   

    color: #000000;

    font-size: 20px;
    line-height: 1.8;
    text-align: centre;
}


/* Bank Card */

.bank-details-card {
    width: 100%;
    max-width: 700px;

    margin: 0 auto;
    padding: 34px 28px;

    color: #ffffff;
    background: #00B3A1;

    text-align: center;

    border-radius: 2px;
    box-shadow: 0 15px 35px rgba(17, 38, 158, 0.2);
}

.bank-details-card h3 {
    margin: 0 0 28px;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;

    text-transform: uppercase;
}

.bank-details-card h3 i {
    margin-right: 7px;
    color: #d99b2b;
}

.bank-detail {
    margin-bottom: 21px;
}

.bank-detail:last-child {
    margin-bottom: 0;
}

.bank-detail span {
    display: block;

    margin-bottom: 5px;

    color: #ffffff;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.bank-detail strong {
    display: block;

    color: #ffffff;

    font-size: 20px;
    font-weight: 400;
    line-height: 1.55;
}

.thank-you {
    margin: 22px 0 0;

    color: #ed7800;

    font-size: 28px;
    font-weight: 700;
    text-align: center;
}


/* =========================
   TABLET
========================== */

@media (max-width: 900px) {

    .get-involved-hero {
        min-height: 420px;
    }

    .projects-grid {
        gap: 30px;
    }

    .project-item img {
        height: 235px;
    }

}


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

@media (max-width: 600px) {

    .get-involved-hero {
        min-height: 300px;
        background-position: center;
    }

    .projects-section {
        padding: 50px 0 30px;
    }

    .involved-title {
        margin-bottom: 32px;
    }

    .involved-title > span {
        margin-bottom: 18px;
        font-size: 16px;
    }

    .involved-title h1 {
        font-size: 29px;
    }

    .involved-title p {
        font-size: 15px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-item img {
        height: 230px;
    }

    .project-item h2 {
        font-size: 18px;
    }

    .donation-section {
        padding: 20px 0 50px;
    }

    .donation-heading h2 {
        font-size: 29px;
    }

    .donation-heading p {
        font-size: 15px;
        text-align: left;
    }

    .bank-details-card {
        max-width: 100%;
        padding: 30px 22px;
    }

}
/* ==========================================
   LEGAL STATUS SECTION
========================================== */

.legal-status-section{
    padding:40px 0 90px;
    margin:0;
}

.legal-status-heading{
    text-align:center;
    margin:0 0 50px;
}

.legal-status-heading h2{
    margin:0;
    font-family:'Playfair Display',serif;
    font-size:34px;
    font-weight:700;
    line-height:1.1;
    color:#123f68;
    text-transform:uppercase;
}

/* ==========================================
   LEGAL STATUS LIST
========================================== */

.legal-status-list{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:26px;
    max-width:1280px;
    margin:0 auto;
}

.legal-status-item{

    display:flex;
    align-items:center;
    gap:18px;

    flex:0 0 auto;

    padding:20px 34px;

    border:1px solid #d8d8d8;
    border-radius:50px;

    background:#fff;

    box-shadow:0 4px 14px rgba(0,0,0,.08);

    transition:.3s;
}

.legal-status-wide{
    min-width:420px;
}

.legal-status-item:hover{

    transform:translateY(-4px);

    border-color:#d99b2b;

    box-shadow:0 10px 24px rgba(0,0,0,.12);

}

/* ==========================================
   ICON
========================================== */

.legal-check{

    width:30px;
    height:30px;

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

    background:#f39c12;

    color:#fff;

    border-radius:50%;

    flex-shrink:0;

}

.legal-check i{
    font-size:20px;
}

/* ==========================================
   TEXT
========================================== */

.legal-text{

    display:flex;
    flex-direction:column;

    gap:4px;

}

.legal-text strong{

    color:#303030;

    font-size:16x;
    font-weight:700;

    line-height:1.3;

}

.legal-text span{

    color:#6b6b6b;

    font-size:16px;

    line-height:1.6;

}



/* ==========================================
   TABLET
========================================== */

@media(max-width:991px){

.legal-status-heading h2{

    font-size:46px;

}

.legal-status-list{

    gap:20px;

}

.legal-status-item,
.legal-status-wide{

    width:calc(50% - 12px);

    min-width:auto;

}

}

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

@media(max-width:768px){

.legal-status-section{

    padding:50px 0 70px;

}

.legal-status-heading{

    margin-bottom:35px;

}

.legal-status-heading h2{

    font-size:34px;

}

.legal-status-list{

    display:grid;

    grid-template-columns:1fr;

    gap:18px;

}

.legal-status-item,
.legal-status-wide{

    width:100%;
    max-width:100%;
    min-width:100%;

    padding:18px 20px;

    border-radius:20px;

}

.legal-text strong{

    font-size:16px;

}

.legal-text span{

    font-size:14px;

}
}
/* ==========================
   FOOTER
========================== */

.footer{
    background: #FF8A00;
    color:#ffffff;
    padding:60px 0 0;
    
}

.footer h3{
    color:#ffffff;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr 1.4fr;
    gap:38px;
    padding-bottom:35px;
}

.footer a{
    color:#ffffff;
    display:block;
    margin:8px 0;
}

.socials{
    display:flex;
    gap:10px;
}

.socials a{
    width:42px;
    height:42px;
    background:rgba(255,255,255,.12);
    border-radius:50%;
    display:grid;
    place-items:center;
    color:#fff;
}

/* Orange Bottom Strip */

.footer-bottom{
    background:#00B3A1;
    color:#fff;
    text-align:center;
    padding:18px 20px;
    margin-top:40px;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
    width:100vw;
    height: 60px;
    border-top:none;
}

/* Who We Are Section */

.about-section{
    padding:70px 0;
    height: 350px;
}

.about-section .grid-2{
    display:grid;
    grid-template-columns:1.25fr 0.75fr;
    gap:50px;
    align-items:start;
}

/* Left Content */

.about-section .content-prose{
    width:100%;
}

.about-section .content-prose h2{
    margin-bottom:25px;
    
}

.about-section .content-prose p{
    margin-bottom:28px;
    line-height:1.9;
    text-align:justify;
}

/* Right Image */

.about-img{
    display:flex;
    justify-content:center;
    align-items:center;   /* Center image vertically */
    height:100%;
}

.about-img img{
    width:100%;
    max-width:650px;
    height:700px;
    object-fit:cover;
    border-radius:20px;
    display:block;
}

/* Responsive */

@media(max-width:992px){

.about-section .grid-2{

    grid-template-columns:1fr;

}

.about-img{

    position:static;

    order:-1;

}

.about-img img{

    height:420px;

}

}



/* ===== Original SOWER logo update ===== */
.header .nav {
    min-height: 118px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    width: 138px;
    height: auto;
    max-height: 104px;
    object-fit: contain;
}

/* Support button: green icon and text */
.menu .btn {
    background: #eefaf5;
    color: #07966f !important;
    border: 2px solid #07966f;
    box-shadow: 0 8px 20px rgba(7,150,111,.16);
}

.menu .btn i {
    color: #07966f;
}

.menu .btn:hover {
    background: #07966f;
    color: #ffffff !important;
}

.menu .btn:hover i {
    color: #ffffff;
}

.footer .brand-logo,
footer .brand-logo {
    width: 170px;
    max-height: 135px;
}

@media (max-width: 900px) {
    .header .nav {
        min-height: 98px;
    }

    .brand-logo {
        width: 112px;
        max-height: 86px;
    }

    .footer .brand-logo,
    footer .brand-logo {
        width: 145px;
        max-height: 115px;
    }
}

@media (max-width: 520px) {
    .header .nav {
        min-height: 90px;
    }

    .brand-logo {
        width: 102px;
        max-height: 78px;
    }
}


/* ===== Gallery + footer mobile responsive update ===== */
.footer .brand-logo,
footer .brand-logo {
    background: transparent;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .gallery {
        columns: 1;
        column-gap: 0;
    }

    .gallery a {
        margin-bottom: 16px;
    }

    .gallery img {
        display: block;
        height: auto;
    }

    .footer {
        padding-top: 42px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 24px;
    }

    .footer .brand-logo,
    footer .brand-logo {
        width: 130px;
        max-height: none;
    }

    .footer-bottom {
        height: auto;
        min-height: 60px;
        margin-top: 28px;
        padding: 16px 18px;
        line-height: 1.45;
    }
}

/* Final requested hero/footer responsive refinements */
.get-involved-hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
@media (max-width: 600px) {
    .get-involved-hero,
    .page-hero.image-only-page-hero {
        background-position: center center;
    }
}


/* Shared rectangle hero image - Gallery & Get Involved */
.get-involved-hero,
.page-hero.image-only-page-hero {
    width: 100%;
    min-height: 0;
    aspect-ratio: 2048 / 657;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (max-width: 900px) {
    .get-involved-hero,
    .page-hero.image-only-page-hero {
        min-height: 300px;
        aspect-ratio: auto;
        background-size: cover;
        background-position: center center;
    }
}

@media (max-width: 600px) {
    .get-involved-hero,
    .page-hero.image-only-page-hero {
        min-height: 240px;
        background-size: cover;
        background-position: center center;
    }
}

/* Final unique rectangle hero images */
.our-actions-hero,
.gallery-page-hero,
.get-involved-hero {
    background-size: cover;
    background-repeat: no-repeat;
}

/* Lift Our Actions hero slightly so the people remain clearly visible */
.our-actions-hero {
    margin-top: -8px;
    background-position: center center;
}

.gallery-page-hero {
    background-position: center center;
}

.get-involved-hero {
    background-position: center center;
}

@media (max-width: 900px) {
    .our-actions-hero,
    .gallery-page-hero,
    .get-involved-hero {
        min-height: 280px;
        aspect-ratio: auto;
    }
    .our-actions-hero { background-position: 50% center; }
    .gallery-page-hero { background-position: 50% center; }
    .get-involved-hero { background-position: 50% center; }
}

@media (max-width: 600px) {
    .our-actions-hero,
    .gallery-page-hero,
    .get-involved-hero {
        min-height: 235px;
    }
    .our-actions-hero {
        margin-top: -5px;
        background-position: 50% center;
    }
    .gallery-page-hero { background-position: 50% center; }
    .get-involved-hero { background-position: 50% center; }
}
