* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

button:focus,
button:active,
a:focus,
a:active {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}



header {
    background-color: #eee;
    box-shadow: 5px 0 20px #b8b5b5;
    width: 100%;
    position: relative;
    z-index: 100;
    padding-top: 30px;
    padding-bottom: 30px;
}

.first {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    height: 100px;
}

.nav a {
    display: flex;
    align-items: center;
}

.first img {
    height: 150px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* ── Desktop Nav ── */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    color: rgb(3, 58, 58);
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 16px;
    white-space: nowrap;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #9b4b05;
}

.nate {
    background-color: #f57c15;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 7px 7px rgb(1, 119, 119);
    color: rgb(3, 58, 58);
    transition: background-color 0.2s, box-shadow 0.2s, color 0.2s;
}

.nate:hover {
    background-color: rgb(1, 119, 119) !important;
    box-shadow: 7px 7px #f57c15 !important;
    color: white !important;
}

/* ── Right side (mobile only) ── */
.header-right {
    display: none;
    align-items: center;
    gap: 20px;
}

.donate-always {
    background-color: #f57c15;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 7px 7px rgb(1, 119, 119);
    color: rgb(3, 58, 58);
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: background-color 0.2s, box-shadow 0.2s, color 0.2s;
}

.donate-always:hover {
    background-color: rgb(1, 119, 119);
    box-shadow: 7px 7px #f57c15;
    color: white;
}

/* ── Hamburger ── */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background-color: rgb(1, 119, 119);
    border: none;
    padding: 10px 12px;
    border-radius: 10px;
    box-shadow: -7px 7px #f57c15;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: black;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open {
    background-color: #f57c15;
    box-shadow: none;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ── Mobile Dropdown ── */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #eee;
    border-top: 2px solid rgb(1, 119, 119);
    width: 100%;
    position: relative;
    z-index: 99;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: rgb(3, 58, 58);
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 14px 30px;
    border-bottom: 1px solid rgba(3, 58, 58, 0.12);
    transition: color 0.2s, background-color 0.2s;
    display: block;
    width: 100%;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: #f57c15;
    background-color: rgba(3, 58, 58, 0.05);
}

/*
   BREAKPOINTS/
/* ── Large tablet (1024px) ── */
@media (max-width: 1024px) {
    .first {
        padding: 0 30px;
        height: 85px;
    }

    .first img {
        height: 75px;
    }

    .nav-links {
        gap: 14px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .nate {
        padding: 8px 12px;
    }
}


/* ── Tablet (768px) ── */
@media (max-width: 768px) {
    .first {
        padding: 0 24px;
        height: 72px;
    }

    .first img {
        height: 80px;
    }

    .nav-links {
        display: none;
    }

    .header-right {
        display: flex;
    }
}

/* ── Mobile (480px) ── */
@media (max-width: 480px) {
    .first {
        padding: 0 16px;
        height: 64px;
    }

    .first img {
        height: 80px;
    }

    .donate-always {
        padding: 8px 12px;
        font-size: 13px;
        box-shadow: 5px 5px rgb(1, 119, 119);
    }

    .hamburger {
        padding: 8px 10px;
        box-shadow: -5px 5px #f57c15;
    }

    .mobile-menu a {
        font-size: 14px;
        padding: 12px 20px;
    }
}

/* ── Small phones (360px) ── */
@media (max-width: 360px) {
    .first {
        padding: 0 12px;
        height: 58px;
    }

    .first img {
        height: 72px;
    }

    .donate-always {
        padding: 7px 9px;
        font-size: 12px;
        box-shadow: 4px 4px rgb(1, 119, 119);
    }

    .hamburger {
        padding: 7px 9px;
        box-shadow: -4px 4px #f57c15;
    }

    .mobile-menu a {
        font-size: 13px;
        padding: 11px 16px;
    }
}

.reach {
    margin: 60px 50px 30px;

}

.nav {
    display: flex;
    align-items: center;
}

.logo-title {
    font-family: 'Great Vibes', cursive;
    font-size: 42px;
    color: #2f2f2f;
    margin: 0;
    font-weight: bold;
}

.out {
    text-align: center;
    margin: 150px 0 0;
    font-size: 30px;
    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 75.5px;
    color: rgb(3, 58, 58);
}

.normal {
    color: #f57c15;
}

.out p {
    margin-top: 25px;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.reach a {
    text-decoration: none;
    color: white;
    background-color: rgb(3, 58, 58);
    padding: 10px 15px;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    border: none;
    border-radius: 20px;
}

.reach a:hover {
    background-color: rgb(1, 119, 119);
}

.download {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.down {
    background-image: url(./asset/13\ Good\ Places\ to\ Volunteer\ -\ Opportunities\ &\ Organizations.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    min-height: 550px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    padding-top: 200px;

    -webkit-mask-image:
        linear-gradient(to right, transparent, black 15%, black 85%, transparent),
        linear-gradient(to bottom, black 80%, transparent);

    mask-image:
        linear-gradient(to right, transparent, black 15%, black 85%, transparent),
        linear-gradient(to bottom, black 80%, transparent);

    -webkit-mask-composite: source-in;
    mask-composite: intersect;
}

.don {
    text-decoration: none;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    background-color: #f57c15;
    padding: 23px 15px;
    font-weight: 400;
    border: none;
    border-radius: 10px;
}

.request {
    text-decoration: none;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    background-color: rgb(1, 119, 119);
    padding: 10px 15px;
    font-weight: 400;
    border: none;
    border-radius: 10px;
    line-height: 25px;
}

.don:hover {
    background-color: #bb5a06;
    color: white;
}

.request:hover {
    background-color: rgb(3, 58, 58);
    color: white;
}

.down-buttons{
    display: none;
}

.funds {
    max-width: 700px;
    margin-left: 50px;
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 70px;
}

.funds h1 {
    margin-bottom: 20px;
    margin-left: 50px;
    color: rgb(3, 58, 58);
    font-family: "poppins", sans-serif;
}

.flex {
    display: flex;
    gap: 50px;
}

.flex img {
    width: 500px;
    height: 400px;
    display: block;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%);
    mask-image: linear-gradient(to right, transparent 0%, black 20%);
}

.funds p {
    line-height: 30px;
}

#box {
    color: rgb(3, 58, 58);
    font-size: 30px;
}

.seam {
    display: flex;
    align-items: center;
}

.seam h3 {
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(3, 58, 58);
}

.merge {
    max-width: 350px;
    background-color: #f57c15;
    padding: 15px 15px;
    border: 1px solid rgb(3, 58, 58);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.merge:hover {
    background-color: #d46a12;
    transform: translateY(-2px);
    cursor: pointer;
}

.merge p {
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 20px;
    color: white;
}

.erge {
    max-width: 350px;
    background-color: rgb(3, 58, 58);
    padding: 15px 15px;
    border: 1px solid #f57c15;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.erge:hover {
    background-color: rgb(7, 51, 51);
    transform: translateY(-2px);
    cursor: pointer;
}

#ox {
    font-size: 30px;
    color: #f57c15;
}

.eam {
    display: flex;
    align-items: center;
}

.eam h3 {
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: #f57c15;
}

.erge p {
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 20px;
    color: white;
}

.cook {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cooked {
    text-align: center;
    margin-bottom: 150px;
}

.cooked h1 {
    margin-bottom: 20px;
    margin-left: 50px;
    color: rgb(3, 58, 58);
    font-family: "poppins", sans-serif;
}

.help {
    max-width: 300px;
    background-color: white;
    border: 10px solid rgb(3, 58, 58);
    text-align: center;
    height: 430px;
}

.help h3 {
    font-size: 45px;
    font-family: "poppins", sans-serif;
    font-style: normal;
    color: rgb(3, 58, 58);
    margin-bottom: 40px;
    padding-top: 65px;
}

.help p {
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 20px;
    color: black;
    margin-bottom: 40px;
    line-height: 30px;
}

.helped {
    max-width: 300px;
    background-color: white;
    border: 10px solid #f57c15;
    text-align: center;
    height: 430px;
}

.helped h3 {
    font-size: 45px;
    font-family: "poppins", sans-serif;
    font-style: normal;
    color: #f57c15;
    margin-bottom: 40px;
    padding-top: 65px;
}

.helped p {
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 20px;
    color: black;
    margin-bottom: 40px;
    line-height: 30px;
}

.not {
    text-decoration: none;
    color: white;
    background-color: rgb(3, 58, 58);
    padding: 10px 15px;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    border: none;
    border-radius: 20px;
}

.nut {
    text-decoration: none;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    background-color: #f57c15;
    padding: 10px 15px;
    font-weight: 400;
    border: none;
    border-radius: 20px;
}

.not:hover {
    background-color: rgb(1, 119, 119);
}

.nut:hover {
    background-color: #d46a12;
}

.imagine {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.map {
    width: 100%;
    height: 400px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.believe {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 400px;
    font-style: normal;
    margin-bottom: px;
    text-align: center;
    margin-top: 100px;
    color: rgb(3, 58, 58);
}

.believe h1 {
    color: rgb(3, 58, 58);
    font-family: "poppins", sans-serif;
}

.line {
    display: inline-block;
    height: 5px;
    width: 250px;
    background-color: rgb(3, 58, 58);
    margin-bottom: 10px;
    border-radius: 40px;
}

.directions {
    margin: 25px 0 25px;
    text-align: center;
}

.directions a {
    padding: 15px 15px;
    text-decoration: none;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    background-color: #f57c15;
    border-radius: 33px;
}

.directions a:hover {
    background-color: #d46a12;
}

/* ════════════════════════
   BREAKPOINTS
════════════════════════ */

/* ── Large tablet (1024px) ── */
@media (max-width: 1024px) {
    .out {
        font-size: 24px;
        line-height: 55px;
        margin: 100px 0 0;
    }

    .out p {
        font-size: 18px;
    }

    .reach {
        margin: 40px 30px 20px;
    }

    .flex {
        gap: 30px;
    }

    .flex img {
        width: 380px;
        height: 320px;
    }

    .funds {
        max-width: 550px;
        font-size: 17px;
    }

    .cook {
        gap: 16px;
    }

    .merge,
    .erge {
        max-width: 280px;
    }

    .imagine {
        gap: 30px;
    }

    .help,
    .helped {
        max-width: 260px;
        height: auto;
        min-height: 380px;
    }

    .help h3,
    .helped h3 {
        font-size: 36px;
        padding-top: 40px;
        margin-bottom: 20px;
    }
}

/* ── Tablet (768px) ── */
@media (max-width: 768px) {
    .out {
        font-size: 20px;
        line-height: 42px;
        margin: 60px 0 0;
    }

    .out p {
        font-size: 16px;
        margin-top: 16px;
    }

    .reach {
        margin: 30px 20px 20px;
        text-align: center;
    }

    .reach a {
        font-size: 16px;
        padding: 9px 14px;
    }

    .down {
        min-height: 400px;
        padding-top: 120px;
        gap: 16px;
    }

.don,
    .request {
        width: 60%;
        text-align: center;
    }

    .down {
        padding-top: 0;
        align-items: flex-end;
        justify-content: center;
    }

    .down .request,
    .down .don {
        display: none !important;
    }

    .down-buttons {
        display: flex;
        justify-content: center;
        gap: 14px;
        padding: 20px 0;
        width: 100%;
    }

    /* About section: stack vertically */
    .flex {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .flex img {
        width: 100%;
        max-width: 500px;
        height: 280px;
        -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent);
        mask-image: linear-gradient(to bottom, black 70%, transparent);
    }

    .funds {
        max-width: 100%;
        margin: 0 20px;
        font-size: 15px;
    }

    .funds h1 {
        margin-left: 0;
        text-align: center;
    }

    /* Services: stack vertically */
    .cook {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .merge,
    .erge {
        max-width: 90%;
        width: 100%;
    }

    .cooked h1 {
        margin-left: 0;
    }

    .cooked {
        margin-bottom: 60px;
    }

    /* Help cards: stack vertically */
    .imagine {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    .help,
    .helped {
        max-width: 90%;
        width: 100%;
        height: auto;
        min-height: unset;
        padding-bottom: 30px;
    }

    .help h3,
    .helped h3 {
        font-size: 30px;
        padding-top: 30px;
        margin-bottom: 16px;
    }

    .help p,
    .helped p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .believe {
        margin-top: 60px;
    }

    .line {
        width: 180px;
    }

    .directions a {
        font-size: 15px;
        padding: 12px 14px;
    }
}

/* ── Mobile (480px) ── */
@media (max-width: 480px) {
    .out {
        font-size: 17px;
        line-height: 34px;
        margin: 40px 0 0;
    }

    .out p {
        font-size: 14px;
    }

    .reach {
        margin: 20px 14px 16px;
    }

    .reach a {
        font-size: 14px;
        padding: 8px 12px;
    }

    .down {
        min-height: 320px;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .don,
    .request {
        width: 70%;
        text-align: center;
    }

    .down .request,
    .down .don {
        display: none !important;
    }

    .down-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 16px 0;
    }

    .down-buttons .request,
    .down-buttons .don {
        width: 70%;
        text-align: center;
    }

    .funds {
        margin: 0 14px;
        font-size: 14px;
    }

    .funds p {
        line-height: 24px;
    }

    .merge p,
    .erge p {
        font-size: 15px;
    }

    .merge,
    .erge {
        max-width: 95%;
    }

    .help h3,
    .helped h3 {
        font-size: 26px;
        padding-top: 24px;
    }

    .help p,
    .helped p {
        font-size: 14px;
        line-height: 24px;
    }

    .not,
    .nut {
        font-size: 15px;
        padding: 9px 14px;
    }

    .map {
        height: 300px;
    }

    .believe {
        margin-top: 40px;
        font-size: 16px;
    }

    .line {
        width: 130px;
        height: 4px;
    }

    .directions a {
        font-size: 14px;
        padding: 10px 12px;
    }
}

/* ── Small phones (360px) ── */
@media (max-width: 360px) {
    .out {
        font-size: 15px;
        line-height: 28px;
    }

    .out p {
        font-size: 13px;
    }

    .reach a {
        font-size: 13px;
        padding: 7px 10px;
    }

    .down {
        min-height: 280px;
        padding-top: 60px;
    }

    .don,
    .request {
        width: 80%;
        text-align: center;
    }

    .down .request,
    .down .don {
        display: none !important;
    }

    .down-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 14px 0;
    }

    .down-buttons .request,
    .down-buttons .don {
        width: 80%;
        text-align: center;
    }

    .funds {
        font-size: 13px;
        margin: 0 10px;
    }

    .merge p,
    .erge p {
        font-size: 13px;
    }

    .seam h3,
    .eam h3 {
        font-size: 16px;
    }

    .help h3,
    .helped h3 {
        font-size: 22px;
        padding-top: 20px;
    }

    .help p,
    .helped p {
        font-size: 13px;
        line-height: 22px;
    }

    .not,
    .nut {
        font-size: 13px;
        padding: 8px 12px;
    }

    .map {
        height: 250px;
    }

    .line {
        width: 100px;
    }

    .directions a {
        font-size: 13px;
        padding: 9px 10px;
    }
}

.foot {
    display: flex;
    align-items: center;
    padding: 40px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    background-color: #f1dddd;
}

.inline {
    display: inline-block;
    width: 2px;
    height: 150px;
    border-radius: 14px;
    background-color: rgb(3, 58, 58);
    margin-right: 80px;
}

.dom {
    margin-right: 350px;
}

.donate {
    margin-bottom: 20px;
    color: rgb(3, 58, 58);
    font-family: "poppins", sans-serif;
}

.foots p {
    font-size: 20px;
    line-height: 30px;
}

.foots {
    display: flex;
    align-items: center;
    gap: 100px;
}

.foots a {
    text-decoration: none;
    color: white;
    background-color: rgb(3, 58, 58);
    padding: 10px 15px;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 15px;
}

.foots a:hover {
    background-color: rgb(1, 119, 119);
}

.socials {
    border-radius: 22200px;
    background-color: rgb(202, 216, 216);
    padding: 10px 10px;
    border: 3px solid rgb(3, 58, 58);
    margin-right: 10px;
    color: rgb(2, 29, 29);
}

.socials:hover {
    cursor: pointer;
}

.footer {
    background: rgb(3, 58, 58);
    color: white;
    padding: 40px 10%;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-about h3 {
    margin-bottom: 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer h4 {
    margin-bottom: 25px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.link a {
    text-decoration: none;
    color: white;
}

.footer ul li {
    margin-bottom: 8px;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
}


/* ════════════════════════
   BREAKPOINTS
════════════════════════ */

/* ── Large tablet (1024px) ── */
@media (max-width: 1024px) {
    .foot {
        padding: 30px;
        gap: 20px;
    }

    .dom {
        margin-right: 60px;
    }

    .inline {
        margin-right: 40px;
        height: 120px;
    }

    .foots {
        gap: 40px;
    }

    .foots p {
        font-size: 17px;
        line-height: 26px;
    }

    .foots a {
        font-size: 17px;
    }

    .donate {
        font-size: 22px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* ── Tablet (768px) ── */
@media (max-width: 768px) {
    .foot {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 24px;
        gap: 24px;
    }

    .dom {
        margin-right: 0;
    }

    .inline {
        display: none;
    }

    .foots {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .foots p {
        font-size: 15px;
        line-height: 24px;
    }

    .foots a {
        font-size: 15px;
        padding: 10px 20px;
    }

    .donate {
        font-size: 20px;
    }

    .footer {
        padding: 36px 6%;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

/* ── Mobile (480px) ── */
@media (max-width: 480px) {
    .foot {
        padding: 24px 16px;
        gap: 20px;
    }

    .donate {
        font-size: 18px;
    }

    .foots p {
        font-size: 14px;
        line-height: 22px;
    }

    .foots a {
        font-size: 14px;
        padding: 9px 16px;
    }

    .footer {
        padding: 30px 5%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .copyright {
        font-size: 12px;
        margin-top: 20px;
    }
}

/* ── Small phones (360px) ── */
@media (max-width: 360px) {
    .foot {
        padding: 20px 12px;
        gap: 16px;
    }

    .donate {
        font-size: 16px;
    }

    .foots p {
        font-size: 13px;
        line-height: 20px;
    }

    .foots a {
        font-size: 13px;
        padding: 8px 14px;
    }

    .footer {
        padding: 24px 4%;
    }

    .footer-container {
        gap: 20px;
    }

    .footer h4 {
        margin-bottom: 16px;
        font-size: 14px;
    }

    .footer ul li {
        margin-bottom: 6px;
        font-size: 13px;
    }

    .copyright {
        font-size: 11px;
        margin-top: 16px;
    }
}



/* ABOUT STYLING */


.about-hero {
    padding: 80px 10%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 30px;
}

.about-hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-hero-container h1 {
    font-size: 30px;
    font-family: "poppins", sans-serif;
    color: rgb(3, 58, 58);
    margin-bottom: 10px;
}

.about-hero-text {
    flex: 1;
}

.about-hero-image {
    flex: 1;
}

.about-hero-image img {
    width: 100%;
    border-radius: 10px;
}

.about-story {
    padding: 80px 10%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 35px;
}

.about-story h2 {
    font-size: 30px;
    font-family: "poppins", sans-serif;
    color: rgb(3, 58, 58);
    margin-bottom: 10px;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    overflow: hidden;
    height: 80vh;
    max-height: 600px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
    display: block;
}



.mission-vision {
    display: flex;
    gap: 40px;
    padding: 80px 10%;
    background: #fafafa;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 30px;
}

.vision h2 {
    font-size: 30px;
    font-family: "poppins", sans-serif;
    color: rgb(3, 58, 58);
    margin-bottom: 10px;
}

.mission h2 {
    font-size: 30px;
    font-family: "poppins", sans-serif;
    color: rgb(3, 58, 58);
    margin-bottom: 10px;
}

.vision h2 {
    font-size: 30px;
    font-family: "poppins", sans-serif;
    color: rgb(3, 58, 58);
    margin-bottom: 10px;
}

.founder-section {
    padding: 60px 20px;
    background-color: #f9f9f9; 
}

.message_founder {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center; 
    gap: 50px;
}

.about-img {
    flex: 1;
    min-width: 350px;
}

.about-img img {
    width: 100%;
    height: 550px; 
    object-fit: cover;
    object-position: top;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.founder-message {
    flex: 1.5;
    font-family: Arial, Helvetica, sans-serif;
}

.founder-message h2 {
    color: rgb(3, 58, 58);
    font-size: 32px;
    margin-bottom: 25px;
    position: relative;
    text-align: left; 
}

.message-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.founder-signature {
    margin-top: 30px;
    border-top: 2px solid #eee;
    padding-top:px;
}

.founder-signature .name {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 0;
}

.founder-signature .role {
    color: rgb(3, 58, 58);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.founders {
    margin: 50px auto;
    max-width: 1200px;
    padding: 0 20px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

.founders h2 {
    color: rgb(3, 58, 58);
    font-family: "poppins", sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.founder {
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    justify-items: center;
}

.service {
    max-width: 300px;
    text-align: center;
}

.services {
    padding: 80px;
    text-align: center;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 30px;
}

.services h2 {
    font-size: 30px;
    font-family: "poppins", sans-serif;
    color: rgb(3, 58, 58);
    margin-bottom: 10px;
}

.services h3 {
    font-size: 25px;
    font-family: "poppins", sans-serif;
    color: rgb(3, 58, 58);
    margin-bottom: 10px;
}

.services-grid {
    padding: 0 10%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30x;
    margin-top: 40px;
}

.services img {
    width: 70%;
    height: 250px;
    border-radius: 8px;
    object-fit: cover;

}



.impact {
    padding: 80px 10%;
    background: #f5f5f5;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 30px;
    margin: 0 auto;
}

.impact h2 {
    font-size: 30px;
    text-align: center;
    font-family: "poppins", sans-serif;
    color: rgb(3, 58, 58);
    margin-bottom: 10px;
}

.impact-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 40px;
}

.impact-item h3 {
    font-size: 36px;
    color: rgb(3, 58, 58);
}



.about-cta {
    padding: 80px 10%;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    line-height: 30px;
}

.about-cta h2 {
    font-size: 30px;
    font-family: "poppins", sans-serif;
    color: rgb(3, 58, 58);
    margin-bottom: 20px;
}

.cta-buttons {
    margin-top: 30px;
}

.cta-buttons a {
    text-decoration: none;
    padding: 12px 25px;
    margin: 10px;
    background: rgb(3, 58, 58);
    color: white;
    border-radius: 5px;
    display: inline-block;
}

.cta-buttons a:hover {
    background-color: rgb(32, 134, 134);
}

/* ════════════════════════
   BREAKPOINTS
════════════════════════ */

/* ── Large tablet (1024px) ── */
@media (max-width: 1024px) {
    .about-hero {
        padding: 60px 6%;
        font-size: 16px;
    }

    .about-hero-container h1 {
        font-size: 26px;
    }

    .about-story {
        padding: 60px 6%;
        font-size: 16px;
        line-height: 30px;
    }

    .about-story h2 {
        font-size: 26px;
    }

    .about-image {
        height: 60vh;
    }

    .mission-vision {
        padding: 60px 6%;
        font-size: 16px;
        gap: 30px;
    }

    .mission h2,
    .vision h2 {
        font-size: 26px;
    }

    .message_founder {
        gap: 30px;
    }

    .about-img {
        min-width: 280px;
    }

    .about-img img {
        height: 450px;
    }

    .founder-message h2 {
        font-size: 26px;
    }

    .message-content p {
        font-size: 16px;
    }

    .service-grid {
        gap: 20px;
    }

    .services {
        padding: 60px 6%;
        font-size: 16px;
    }

    .services h2 {
        font-size: 26px;
    }

    .impact {
        padding: 60px 6%;
    }

    .impact-container {
        gap: 50px;
    }

    .about-cta {
        padding: 60px 6%;
        font-size: 18px;
    }
}

/* ── Tablet (768px) ── */
@media (max-width: 768px) {
    .about-hero {
        padding: 40px 5%;
        font-size: 15px;
    }

    .about-hero-container {
        flex-direction: column;
        gap: 24px;
    }

    .about-hero-container h1 {
        font-size: 24px;
    }

    .about-hero-image {
        width: 100%;
    }

    .about-story {
        padding: 40px 5%;
        font-size: 15px;
        line-height: 28px;
    }

    .about-container {
        flex-direction: column-reverse;
        gap: 24px;
    }

    .about-image {
        width: 100%;
        height: 350px;
        max-height: 350px;
    }

    .mission-vision {
        flex-direction: column;
        padding: 40px 5%;
        gap: 24px;
        font-size: 15px;
    }

    .founder-section {
        padding: 40px 16px;
    }

    .message_founder {
        flex-direction: column;
        gap: 24px;
    }

    .about-img {
        min-width: unset;
        width: 100%;
    }

    .about-img img {
        height: 380px;
    }

    .founder-message h2 {
        font-size: 24px;
        text-align: center;
    }

    .message-content p {
        font-size: 15px;
    }

    .founders {
        padding: 0 16px;
        margin: 30px auto;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services {
        padding: 40px 5%;
        font-size: 15px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .impact {
        padding: 40px 5%;
    }

    .impact-container {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .impact-item {
        text-align: center;
        min-width: 120px;
    }

    .about-cta {
        padding: 40px 5%;
        font-size: 16px;
    }

    .cta-buttons a {
        padding: 10px 18px;
        font-size: 15px;
    }
}

/* ── Mobile (480px) ── */
@media (max-width: 480px) {
    .about-hero {
        padding: 30px 4%;
        font-size: 14px;
        line-height: 26px;
    }

    .about-hero-container h1 {
        font-size: 20px;
    }

    .about-story {
        padding: 30px 4%;
        font-size: 14px;
        line-height: 26px;
    }

    .about-story h2 {
        font-size: 20px;
    }

    .about-image {
        height: 260px;
    }

    .mission-vision {
        padding: 30px 4%;
        font-size: 14px;
        line-height: 26px;
    }

    .mission h2,
    .vision h2 {
        font-size: 20px;
    }

    .founder-section {
        padding: 30px 12px;
    }

    .about-img img {
        height: 300px;
    }

    .founder-message h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .message-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 14px;
    }

    .founder-signature .name {
        font-size: 16px;
    }

    .founders h2 {
        font-size: 20px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service {
        max-width: 100%;
    }

    .services {
        padding: 30px 4%;
        font-size: 14px;
    }

    .services h2 {
        font-size: 20px;
    }

    .services h3 {
        font-size: 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .impact {
        padding: 30px 4%;
        font-size: 16px;
    }

    .impact h2 {
        font-size: 20px;
    }

    .impact-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .impact-item h3 {
        font-size: 28px;
    }

    .about-cta {
        padding: 30px 4%;
        font-size: 14px;
    }

    .about-cta h2 {
        font-size: 20px;
    }

    .cta-buttons a {
        padding: 9px 14px;
        font-size: 14px;
        margin: 6px;
    }
}

/* ── Small phones (360px) ── */
@media (max-width: 360px) {
    .about-hero {
        padding: 24px 3%;
        font-size: 13px;
    }

    .about-hero-container h1 {
        font-size: 18px;
    }

    .about-story {
        padding: 24px 3%;
        font-size: 13px;
    }

    .about-story h2 {
        font-size: 18px;
    }

    .about-image {
        height: 220px;
    }

    .mission-vision {
        padding: 24px 3%;
        font-size: 13px;
    }

    .mission h2,
    .vision h2 {
        font-size: 18px;
    }

    .about-img img {
        height: 260px;
    }

    .founder-message h2 {
        font-size: 18px;
    }

    .message-content p {
        font-size: 13px;
    }

    .founder-signature .name {
        font-size: 14px;
    }

    .founders h2 {
        font-size: 18px;
    }

    .services {
        padding: 24px 3%;
        font-size: 13px;
    }

    .impact {
        padding: 24px 3%;
        font-size: 14px;
    }

    .impact-item h3 {
        font-size: 24px;
    }

    .about-cta {
        padding: 24px 3%;
        font-size: 13px;
    }

    .about-cta h2 {
        font-size: 18px;
    }

    .cta-buttons a {
        padding: 8px 12px;
        font-size: 13px;
        display: block;
        margin: 8px auto;
        width: fit-content;
    }
}




/* Get_help_styling */



.hero-section {
    margin-top: 100px;
    padding: 0 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-left: clamp(20px, 8vw, 120px); 
    font-family: Arial, Helvetica, sans-serif;
    max-width: 600px;
}

.hero-content h1 {
    font-size: clamp(32px, 5vw, 42px);
    margin: 30px 0 15px;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    color: rgb(3, 58, 58);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}


.primary-btn {
    background: rgb(3, 58, 58);
    color: white;
    padding: 13px 15px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.primary-btn:hover {
    background-color: rgb(1, 119, 119);
}

.secondary-btn {
    background: rgb(3, 58, 58);
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.steps-section {
    padding: 80px 20px;
    text-align: center;
    background: #f7f7f7;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 20px;
}

.steps-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: rgb(3, 58, 58);
    font-family: "poppins", sans-serif;
}

.steps-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.step {
    background: white;
    padding: 25px;
    width: 380px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.step h3 {
    margin-bottom: 10px;
    color: rgb(3, 58, 58);
}

.eligibility {
    padding: 80px 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.eligibility-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    align-items: center;
    line-height: 30px;
}

.eligibility-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.eligibility-container h2 {
    color: rgb(3, 58, 58);
    margin-bottom: 20px;
    font-family: "poppins", sans-serif;
}

.eligibility-container p {
    margin-bottom: 20px;
}

.referrals {
    padding: 80px 20px;
    background: #f7f7f7;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 30px;
}

.referrals h2 {
    margin-bottom: 15px;
    font-family: "poppins", sans-serif;
    color: rgb(3, 58, 58);
}

.referral-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.referral-card {
    background: white;
    width: 360px;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.referral-card h3 {
    color: rgb(3, 58, 58);
}

.referal-card img {
    width: 50%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.referral-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.location {
    padding: 60px 20px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

.location h2 {
    color: rgb(3, 58, 58);
    font-family: "poppins", sans-serif;
    margin-bottom: 40px;
    font-size: 2rem;
}

.location-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid rgb(1, 119, 119);
    max-width: 1100px;
    padding: 40px;
    margin: 0 auto;
    border-radius: 20px;
    gap: 40px;
}

.map-full {
    flex: 1.5;
    width: 100%;
}

.map-full iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 15px;
    display: block;
}

.location p {
    flex: 1;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    text-align: left;
}

.support {
    padding: 80px 20px;
    text-align: center;
    background: #f7f7f7;
    line-height: 30px;
    font-family: Arial, Helvetica, sans-serif;
}

.support h2 {
    font-family: "poppins", sans-serif;
    color: rgb(3, 58, 58);
    margin-bottom: 20px;
}

.support p {
    max-width: 600px;
    margin: auto;
    margin-bottom: 25px;
}

.don-here:hover {
    background-color: #d46a12 ! important;
}

#togg {
    border: 3px solid #f57c15;
    background-color: #f3d7bf;
    color: #4e2909;
}

#togg:hover {
    cursor: pointer;
}



/* RESPONSIVE DESIGN */

@media (max-width: 768px) {
    .hero-content {
        margin-left: 0;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-section {
        margin-top: 60px;
    }
}

@media (max-width:900px) {

    .eligibility-container {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

}

/* TABLET - Max 1024px */
@media (max-width: 1024px) {
    .location-info {
        max-width: 90%;
        padding: 30px;
        gap: 30px;
    }
    
    .location p {
        font-size: 18px;
    }
}

/* MOBILE - Max 768px */
@media (max-width: 768px) {
    .location {
        padding: 40px 15px;
    }

    .location-info {
        flex-direction: column; /* Stack Map on top of Text */
        text-align: center;
        padding: 20px;
    }

    .location p {
        text-align: center; /* Center text when stacked */
        margin-top: 20px;
        line-height: 1.8;
    }

    .map-full iframe {
        height: 300px; /* Slightly shorter map on mobile */
    }
}

/* SMALL MOBILE - Max 480px */
@media (max-width: 480px) {
    .location h2 {
        font-size: 1.5rem;
    }

    .location-info {
        border-radius: 10px;
        padding: 15px;
    }

    .location p {
        font-size: 16px;
    }

    .map-full iframe {
        height: 250px;
    }
}



/* How to get help start here */



.how_help {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 19px;
}

.hero-contents h1 {
    color: #f57c15;
    font-size: 42px;
    margin-left: 30px;
    margin-bottom: 15px;
    font-family: "poppins", sans-serif;
    font-style: normal;
}

.hero-contents p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    margin-left: 30px;

}

.help-intro {
    padding: 0 20px 80px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 30px;
}

.intro-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-text h2 {
    font-family: "poppins", sans-serif;
    color: #cf670c;
    margin-bottom: 20px;
}

.intro-image img {
    width: 80%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.help-steps {
    padding: 80px 20px;
    font-family: Arial, Helvetica, sans-serif;
    margin-left: 110px;
}

.help-steps h2 {
    color: #cf670c;
    font-family: "poppins", sans-serif;
    margin: 0 0 50px 100px;
}

.steps-grid {
    flex-wrap: wrap;
    margin-top: 40px;
}

.step-card {
    background: white;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    line-height: 30px;
    gap: 50px;
    padding: 30px 30px;
    margin-top: 40px;
}

.step-card h3 {
    color: #cf670c;
    margin-bottom: 10px;
}

.step-car{
    max-width: 700px;
}

.step-card img {
    width: 60%;
    height: 260px;
    object-fit: cover;
    border-radius: 4px;
}

.sub-nav {
    font-family: "poppins", sans-serif;
    font-weight: 700;
    background-color: #f57c15;
    padding: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.sub-nav a {
    background-color: white;
    color: #f57c15;
    text-decoration: none;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px 15px;
    border-radius: 4px;
}

.sub-nav a:hover {
    background-color: #eea96c;
    color: white;
}

/* ════════════════════════
   BREAKPOINTS
════════════════════════ */

/* ── Tablet (768px) ── */
@media (max-width: 768px) {
    .help-hero {
        margin: 40px 20px;
    }

    .hero-contents h1 {
        font-size: 26px;
        margin-left: 0;
    }

    .hero-contents p {
        font-size: 15px;
        margin-left: 0;
    }
}

/* ── Mobile (480px) ── */
@media (max-width: 480px) {
    .help-hero {
        margin: 24px 14px;
    }

    .hero-contents h1 {
        font-size: 22px;
        margin-left: 0;
    }

    .hero-contents p {
        font-size: 14px;
        margin-left: 0;
    }
}

/* ── Small phones (360px) ── */
@media (max-width: 360px) {
    .help-hero {
        margin: 20px 10px;
    }

    .hero-contents h1 {
        font-size: 18px;
    }

    .hero-contents p {
        font-size: 13px;
    }
}


/* ── Large tablet (1024px) ── */
@media (max-width: 1024px) {
    .hero-contents h1 {
        font-size: 34px;
    }

    .hero-contents p {
        font-size: 16px;
    }

    .help-intro {
        padding: 0 16px 60px;
    }

    .intro-container {
        gap: 24px;
    }

    .intro-image img {
        width: 100%;
        height: 260px;
    }

    .help-steps {
        margin-left: 40px;
        padding: 60px 16px;
    }

    .help-steps h2 {
        margin: 0 0 40px 40px;
        font-size: 24px;
    }

    .step-card {
        gap: 30px;
    }

    .step-card img {
        width: 50%;
        height: 220px;
    }

    .step-car {
        max-width: 100%;
    }
}

/* ── Tablet (768px) ── */
@media (max-width: 768px) {
    .hero-contents h1 {
        font-size: 28px;
        margin-left: 20px;
    }

    .hero-contents p {
        font-size: 15px;
        margin-left: 20px;
    }

    .help-intro {
        padding: 0 16px 40px;
        font-size: 15px;
        line-height: 26px;
    }

    /* Stack intro section */
    .intro-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .intro-image img {
        width: 100%;
        height: 240px;
    }

    .help-steps {
        margin-left: 0;
        padding: 40px 16px;
    }

    .help-steps h2 {
        margin: 0 0 30px 0;
        font-size: 22px;
        text-align: center;
    }

    /* Stack step cards */
    .step-card {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .step-car {
        max-width: 100%;
        padding: 20px;
        order: 2;
    }

    .step-card img {
        width: 100%;
        height: 220px;
        border-radius: 6px 6px 0 0;
        order: 1;
    }

    .steps-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-top: 0;
    }
}

/* ── Mobile (480px) ── */
@media (max-width: 480px) {
    .hero-contents h1 {
        font-size: 24px;
        margin-left: 14px;
        margin-bottom: 10px;
    }

    .hero-contents p {
        font-size: 14px;
        margin-left: 14px;
    }

    .help-intro {
        padding: 0 12px 30px;
        font-size: 14px;
        line-height: 24px;
    }

    .intro-text h2 {
        font-size: 20px;
    }

    .intro-image img {
        height: 200px;
    }

    .help-steps {
        padding: 30px 12px;
    }

    .help-steps h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .step-card {
        border-radius: 6px;
    }

    .step-car {
        padding: 16px;
    }

    .step-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .step-card p {
        font-size: 14px;
        line-height: 24px;
    }

    .step-card img {
        height: 180px;
    }
}

/* ── Small phones (360px) ── */
@media (max-width: 360px) {
    .hero-contents h1 {
        font-size: 20px;
        margin-left: 10px;
    }

    .hero-contents p {
        font-size: 13px;
        margin-left: 10px;
    }

    .help-intro {
        padding: 0 10px 24px;
        font-size: 13px;
    }

    .intro-text h2 {
        font-size: 18px;
    }

    .intro-image img {
        height: 170px;
    }

    .help-steps {
        padding: 24px 10px;
    }

    .help-steps h2 {
        font-size: 18px;
    }

    .step-car {
        padding: 12px;
    }

    .step-card h3 {
        font-size: 15px;
    }

    .step-card p {
        font-size: 13px;
        line-height: 22px;
    }

    .step-card img {
        height: 150px;
    }
}

/* ── Large tablet (1024px) ── */
@media (max-width: 1024px) {
    .sub-nav {
        padding: 30px;
        gap: 10px;
    }

    .sub-nav a {
        font-size: 17px;
        padding: 10px 14px;
    }
}

/* ── Tablet (768px) ── */
@media (max-width: 768px) {
    .sub-nav {
        padding: 24px 20px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .sub-nav a {
        font-size: 15px;
        padding: 10px 14px;
        text-align: center;
        flex: 1 1 calc(50% - 10px);
    }
}

/* ── Mobile (480px) ── */
@media (max-width: 480px) {
    .sub-nav {
        padding: 20px 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .sub-nav a {
        font-size: 14px;
        padding: 12px 10px;
        text-align: center;
        flex: unset;
        width: 100%;
    }
}

/* ── Small phones (360px) ── */
@media (max-width: 360px) {
    .sub-nav {
        padding: 16px 12px;
        gap: 8px;
    }

    .sub-nav a {
        font-size: 13px;
        padding: 10px 8px;
    }
}


/* Find refferals styling*/



.hero-context h1 {
    font-size: 42px;
    margin: 30px 0 15px;
    font-family: "poppins", sans-serif;
    font-style: normal;
    color: #f57c15;
}

.refer{
    margin-top: 70px;
}

.referral-hero {
    margin-top: 100px;
    margin-left: 100px;
}

.agencies {
    margin-left: 120px;
    margin-top: 80px;
}

.agencies h2 {
    font-family: "poppins", sans-serif;
    color: #cf670c;
    margin-left: 50px;
    margin-bottom: 30px;
}

.agencies h3 {
    font-family: "poppins", sans-serif;
    color: #cf670c;
}

.agency-grid {
    max-width: 1100px;
}

.agency-card {
    background: white;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 30px;
    justify-content: space-between;
    padding: 20px 40px;
}

.agency-card img {
    width: 40%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
}

/* ════════════════════════
   BREAKPOINTS
════════════════════════ */

/* ── Large tablet (1024px) ── */
@media (max-width: 1024px) {
    .referral-hero {
        margin-top: 60px;
        margin-left: 40px;
    }

    .hero-context h1 {
        font-size: 34px;
    }

    .agencies {
        margin-left: 40px;
        margin-top: 50px;
    }

    .agencies h2 {
        font-size: 22px;
        margin-left: 20px;
    }

    .agency-grid {
        max-width: 100%;
        padding-right: 40px;
    }

    .agency-card {
        padding: 20px 24px;
        gap: 20px;
    }

    .agency-card img {
        width: 35%;
        height: 200px;
    }
}

/* ── Tablet (768px) ── */
@media (max-width: 768px) {
    .referral-hero {
        margin-top: 40px;
        margin-left: 20px;
    }

    .hero-context h1 {
        font-size: 26px;
        margin: 20px 0 10px;
    }

    .hero-context p {
        font-size: 15px;
    }

    .agencies {
        margin-left: 16px;
        margin-top: 30px;
    }

    .agencies h2 {
        font-size: 20px;
        margin-left: 0;
        margin-bottom: 20px;
    }

    .agency-grid {
        max-width: 100%;
        padding-right: 16px;
    }

    /* Stack cards vertically */
    .agency-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 16px;
    }

    .agency-card img {
        width: 100%;
        height: 220px;
        border-radius: 4px;
    }
}

/* ── Mobile (480px) ── */
@media (max-width: 480px) {
    .referral-hero {
        margin-top: 24px;
        margin-left: 14px;
    }

    .hero-context h1 {
        font-size: 22px;
        margin: 14px 0 8px;
    }

    .hero-context p {
        font-size: 14px;
    }

    .agencies {
        margin-left: 12px;
        margin-top: 24px;
    }

    .agencies h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .agencies h3 {
        font-size: 16px;
    }

    .agency-grid {
        padding-right: 12px;
    }

    .agency-card {
        padding: 16px;
        gap: 12px;
        margin-bottom: 16px;
    }

    .agency-card p {
        font-size: 14px;
        line-height: 24px;
    }

    .agency-card img {
        height: 180px;
    }
}

/* ── Small phones (360px) ── */
@media (max-width: 360px) {
    .referral-hero {
        margin-top: 20px;
        margin-left: 10px;
    }

    .hero-context h1 {
        font-size: 18px;
    }

    .hero-context p {
        font-size: 13px;
    }

    .agencies {
        margin-left: 10px;
        margin-top: 20px;
    }

    .agencies h2 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .agencies h3 {
        font-size: 15px;
    }

    .agency-grid {
        padding-right: 10px;
    }

    .agency-card {
        padding: 12px;
        gap: 10px;
        margin-bottom: 12px;
    }

    .agency-card p {
        font-size: 13px;
        line-height: 22px;
    }

    .agency-card img {
        height: 160px;
    }
}



/* Give Help start here */



/* Your original desktop styles stay here */
.help-hero {
    margin: 110px;
    line-height: 30px;
    font-family: Arial, Helvetica, sans-serif;
}

.hero-text h1 {
    font-size: 42px;
    font-family: "Poppins", sans-serif;
    color: rgb(3, 58, 58);
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 22px;
    line-height: 35px;
    margin-left: 5px;
}


.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.help-card {
    background-color: #eee;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 5px 10px;
}

.img-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;

}

.text-card {
    padding: 30px;
    text-align: center;
}

.text-card h3 {
    color: rgb(3, 58, 58);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: "poppins", sans-serif;
}

.text-card p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.bg-light-green {
    background-color: #e0e6e2;
}

.bg-light-gray {
    background-color: #e0e6e2;
}

.arrow-link {
    display: inline-block;
    font-size: 2.5rem;
    color: rgb(3, 58, 58);
    text-decoration: none;
    transition: transform 0.2s;
}

.arrow-link:hover {
    transform: translateX(10px);
}



.tutor {
    padding: 100px 10%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 100px;
}

.impact-text {
    flex: 1;
}

.impact-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    font-family: "poppins", sans-serif;
    color: rgb(3, 58, 58);
}

.impact-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    margin-bottom: 30px;
}

.impact-text a {
    background: rgb(3, 58, 58);
    font-size: 17px;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;display: inline-block;
    transition: all 0.3s ease;
}

.impact-text a:hover {
    background-color: rgb(1, 119, 119);
}

.impact-image {
    flex: 1;
}

.impact-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.help-cta {
    background: rgb(232, 238, 238);
    color: #555;
    text-align: center;
    padding: 90px 10%;
    font-family: Arial, Helvetica, sans-serif;
}

.help-cta h2 {
    font-size: 34px;
    margin-bottom: 15px;
    font-family: "poppins", sans-serif;
    color: rgb(3, 58, 58);
}

.help-cta p {
    font-size: 18px;
    margin-bottom: 25px;
}

.help-cta a {
    background: rgb(3, 58, 58);
    font-size: 17px;
    color: white;
    padding: 13px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.help-cta a:hover {
    background: rgb(1, 119, 119);
}



/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .help-hero {
        /* Removes the 90px margin that crushes the content */
        margin: 40px 0; 
        
        /* Adds the small gap between text and screen edge */
        padding: 0 20px; 
        
        /* Ensures the container takes full width */
        width: 100%;
        box-sizing: border-box; 
    }

    .hero-text {
        margin-left: 0; /* Removes any desktop offsets */
    }

    .hero-text h1 {
        /* Scales the header so it fits on one or two lines */
        font-size: 32px; 
        margin-bottom: 15px;
    }

    .hero-text p {
        /* Makes the font size more appropriate for a phone screen */
        font-size: 18px; 
        line-height: 28px;
        margin-left: 0; /* Forces it to lap perfectly with the header */
    }
}
/* ==========================================
   TABLET BREEAKPOINT (Max-width: 1024px)
   ========================================== */
@media (max-width: 1024px) {
    .tutor {
        padding: 60px 5%;
        gap: 40px;
    }

    .impact-text h2, .help-cta h2 {
        font-size: 28px;
    }

    .help-cta {
        padding: 60px 5%;
    }
}

/* ==========================================
   MOBILE BREAKPOINT (Max-width: 768px)
   ========================================== */
@media (max-width: 768px) {
    .tutor {
        flex-direction: column; /* Stack text on top of image */
        text-align: center;
        padding: 40px 20px;
        gap: 30px;
    }

    .impact-text {
        order: 2;
    }
    .impact-image {
        order: 1;
        width: 100%;
    }

    .impact-image img {
        height: 300px;
    }

    .help-cta {
        padding: 50px 20px;
    }

    .help-cta h2 {
        font-size: 26px;
    }
}

/* ==========================================
   SMALL MOBILE BREAKPOINT (Max-width: 480px)
   ========================================== */
@media (max-width: 480px) {
    .impact-text h2, .help-cta h2 {
        font-size: 22px;
    }

    .impact-text p, .help-cta p {
        font-size: 16px;
    }


    .impact-text a, .help-cta a {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .impact-image img {
        height: 250px;
    }
}

@media(max-width:768px) {

    .hero-text {
        padding: 30px;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .impact {
        flex-direction: column;
        text-align: center;
    }

}

@media (max-width: 992px) {
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .help-grid {
        grid-template-columns: 1fr;
    }
}





/* Volunteer styling */

.min-navbar {
    background-color: #f57c15;
    padding: 40px;
}

.min-navbar ul {
    display: flex;
    align-items: center;
    text-align: center;
    list-style: none;
    gap: 40px;
    font-size: 18px;
    font-family: "poppins", sans-serif;
    font-weight: 700;
    margin: 0 auto;
    justify-content: center;
}

.min-navbar a {
    text-decoration: none;
    color: #f57c15;
    background-color: white;
    padding: 10px;
    border-radius: 4px;
}

.min-navbar a:hover {
    color: white;
    background-color: #e7d5c6;
}

.volunteer-container{
    margin-top: 50px;
}

.min-navbar {
    background-color: #f57c15;
    padding: 40px;
}

.min-navbar ul {
    display: flex;
    align-items: center;
    text-align: center;
    list-style: none;
    gap: 40px;
    font-size: 18px;
    font-family: "poppins", sans-serif;
    font-weight: 700;
    margin: 0 auto;
    justify-content: center;
}

.min-navbar a {
    text-decoration: none;
    color: #f57c15;
    background-color: white;
    padding: 10px;
    border-radius: 4px;
}

.min-navbar a:hover {
    color: white;
    background-color: #e7d5c6;
}

.volunteer-container {
    margin-top: 80px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 30px;
}

.label {
    font-weight: 700;
    font-size: 1.9rem;
    letter-spacing: 1px;
    font-family: Arial, Helvetica, sans-serif;
}

.main-title {
    color: #f57c15;
    font-size: 4rem;
    margin: 30px 0 50px;
    font-family: "poppins", sans-serif;
}

.summary-bold {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 40px;
}

.content-wrapper p {
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 20px;
    font-size: 20px;
}

.sidebar {
    margin-top: 200px;
}

.feature-card {
    margin-bottom: 100px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.img-wrapper img {
    width: 100%;
    object-fit: cover;
    height: 150px;
    display: block;
}

.card-caption {
    background-color: transparent;
    padding: 25px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.card-caption a {
    color: #cf670c;
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.3s ease;
}

.feature-card:hover .card-caption {
    background-color: #eea96c;
}

.feature-card:hover .card-caption a {
    color: white;
}

.feature-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.get-involve {
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f57c15;
    color: white;
    padding: 15px 17px;
    border-radius: 5px;
    margin-left: 100px;
    font-size: 18px;
}

.get-involve:hover {
    background-color: #fa953c;
}

/* ════════════════════════
   BREAKPOINTS
════════════════════════ */

/* ── Large tablet (1024px) ── */
@media (max-width: 1024px) {
    .min-navbar {
        padding: 30px;
    }

    .min-navbar ul {
        gap: 20px;
        font-size: 16px;
    }

    .content-wrapper {
        gap: 40px;
        margin: 30px auto;
    }

    .main-title {
        font-size: 3rem;
        margin: 20px 0 30px;
    }

    .label {
        font-size: 1.5rem;
    }

    .summary-bold {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .content-wrapper p {
        font-size: 17px;
    }

    .sidebar {
        margin-top: 120px;
    }

    .feature-card {
        margin-bottom: 60px;
    }

    .get-involve {
        margin-left: 60px;
        font-size: 16px;
    }
}

/* ── Tablet (768px) ── */
@media (max-width: 768px) {
    .min-navbar {
        padding: 24px 20px;
    }

    .min-navbar ul {
        flex-wrap: wrap;
        gap: 12px;
        font-size: 15px;
    }

    .min-navbar li {
        flex: 1 1 calc(50% - 12px);
    }

    .min-navbar a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .volunteer-container {
        margin-top: 30px;
    }

    /* Stack content and sidebar vertically */
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 24px auto;
    }

    .main-title {
        font-size: 2.4rem;
        margin: 16px 0 24px;
    }

    .label {
        font-size: 1.3rem;
    }

    .summary-bold {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .content-wrapper p {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 14px;
    }

    .sidebar {
        margin-top: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .feature-card {
        margin-bottom: 0;
    }

    .get-involve {
        margin-left: 20px;
        font-size: 16px;
        padding: 13px 16px;
    }
}

/* ── Mobile (480px) ── */
@media (max-width: 480px) {
    .min-navbar {
        padding: 20px 16px;
    }

    .min-navbar ul {
        flex-direction: column;
        gap: 10px;
        font-size: 14px;
    }

    .min-navbar li {
        flex: unset;
        width: 100%;
    }

    .min-navbar a {
        display: block;
        width: 100%;
        padding: 12px;
        text-align: center;
    }

    .volunteer-container {
        margin-top: 20px;
    }

    .content-wrapper {
        padding: 0 14px;
        margin: 16px auto;
        gap: 20px;
    }

    .main-title {
        font-size: 2rem;
        margin: 12px 0 20px;
    }

    .label {
        font-size: 1.1rem;
    }

    .summary-bold {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .content-wrapper p {
        font-size: 14px;
        line-height: 24px;
    }

    /* Stack sidebar cards vertically on mobile */
    .sidebar {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .img-wrapper img {
        height: 180px;
    }

    .card-caption {
        padding: 16px;
    }

    .get-involve {
        margin-left: 14px;
        font-size: 15px;
        padding: 12px 14px;
    }
}

/* ── Small phones (360px) ── */
@media (max-width: 360px) {
    .min-navbar {
        padding: 16px 12px;
    }

    .min-navbar ul {
        gap: 8px;
        font-size: 13px;
    }

    .content-wrapper {
        padding: 0 10px;
    }

    .main-title {
        font-size: 1.7rem;
    }

    .label {
        font-size: 1rem;
    }

    .summary-bold {
        font-size: 14px;
    }

    .content-wrapper p {
        font-size: 13px;
        line-height: 22px;
    }

    .img-wrapper img {
        height: 150px;
    }

    .card-caption {
        padding: 12px;
    }

    .card-caption a {
        font-size: 13px;
    }

    .get-involve {
        margin-left: 10px;
        font-size: 14px;
        padding: 10px 12px;
    }
}


/* Responsive */

@media (max-width: 768px) {
    .text-content {
        /* Removes the 90px desktop margin to let the container 'lap' */
        margin: 40px 0; 
        
        /* The small gap (15px-20px) you requested for the edges */
        padding: 0 20px; 
        
        /* Forces the container to span the full screen width */
        width: 100%;
        box-sizing: border-box; 
    }

    .label {
        /* Scales the label down so it doesn't look bulky on a phone */
        font-size: 1.4rem; 
    }

    .main-title {
        /* Scales the 4rem title down so it fits without breaking */
        font-size: 2.5rem; 
        margin: 20px 0 30px;
    }

    .summary-bold {
        /* Adjusts font size for mobile readability */
        font-size: 18px;
        margin-bottom: 25px;
    }

    .text-content p {
        /* Ensures any standard paragraphs align perfectly with the header */
        margin-left: 0; 
        font-size: 17px;
        line-height: 1.5;
    }
}

/* ── Large tablet (1024px) ── */
@media (max-width: 1024px) {
    .min-navbar {
        padding: 30px;
    }

    .min-navbar ul {
        gap: 20px;
        font-size: 16px;
    }

    .min-navbar a {
        padding: 10px 12px;
    }
}

/* ── Tablet (768px) ── */
@media (max-width: 768px) {
    .min-navbar {
        padding: 24px 20px;
    }

    .min-navbar ul {
        flex-wrap: wrap;
        gap: 12px;
        font-size: 15px;
    }

    .min-navbar li {
        flex: 1 1 calc(50% - 12px);
    }

    .min-navbar a {
        display: block;
        width: 100%;
        padding: 10px;
        text-align: center;
    }
}

/* ── Mobile (480px) ── */
@media (max-width: 480px) {
    .min-navbar {
        padding: 20px 16px;
    }

    .min-navbar ul {
        flex-direction: column;
        gap: 10px;
        font-size: 14px;
    }

    .min-navbar li {
        flex: unset;
        width: 100%;
    }

    .min-navbar a {
        display: block;
        width: 100%;
        padding: 12px;
        text-align: center;
    }
}

/* ── Small phones (360px) ── */
@media (max-width: 360px) {
    .min-navbar {
        padding: 16px 12px;
    }

    .min-navbar ul {
        gap: 8px;
        font-size: 13px;
    }

    .min-navbar a {
        padding: 10px;
    }
}

@media (max-width: 850px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-title {
        font-size: 2.8rem;
    }
}

/* stops here */


/* SUb_Volunteer Starts Here */

.body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2937;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.back a {
    color: rgb(2, 29, 29);
    text-decoration: none;
    font-family: "poppins", sans-serif;
    font-weight: 400;
    margin-left: 80px;
}

.back {
    margin-top: 50px;
}

.container {
    max-width: 550px;
    width: 100%;
}

.header {
    text-align: center;
    margin-bottom: 32px;
    background-color: transparent;
}

.header h1 {
    font-family: "poppins", sans-serif;
    font-size: 36px;
    color: rgb(3, 58, 58);
    margin-bottom: 8px;
}

.header p {
    color: #555;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
}

.form-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
    font-family: Arial, Helvetica, sans-serif;
}

.input-row {
    display: flex;
    gap: 16px;
}

.field {
    margin-bottom: 20px;
    flex: 1;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    background: #fff;
}

input:focus {
    outline: 2px solid rgb(3, 58, 58);
    border-color: transparent;
}

button {
    width: 100%;
    padding: 14px;
    background-color: rgb(3, 58, 58);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background-color: rgb(1, 119, 119);
}

.post-submit-note {
    margin-top: 20px;
    font-size: 13px;
    color: #6b7280;
    text-align: center;
    line-height: 1.4;
}

/* ════════════════════════
   BREAKPOINTS
════════════════════════ */

/* ── Large tablet (1024px) ── */
@media (max-width: 1024px) {
    .back a {
        margin-left: 40px;
    }

    .body {
        padding: 30px 20px;
    }

    .header h1 {
        font-size: 30px;
    }
}

/* ── Tablet (768px) ── */
@media (max-width: 768px) {
    .back {
        margin-top: 30px;
    }

    .back a {
        margin-left: 24px;
        font-size: 15px;
    }

    .body {
        padding: 24px 16px;
    }

    .container {
        max-width: 100%;
    }

    .header h1 {
        font-size: 26px;
    }

    .header p {
        font-size: 15px;
    }

    .form-card {
        padding: 24px;
    }

    .input-row {
        gap: 12px;
    }

    input,
    select,
    textarea {
        font-size: 15px;
        padding: 11px;
    }

    button {
        font-size: 15px;
        padding: 13px;
    }
}

/* ── Mobile (480px) ── */
@media (max-width: 480px) {
    .back {
        margin-top: 20px;
    }

    .back a {
        margin-left: 16px;
        font-size: 14px;
    }

    .body {
        padding: 20px 12px;
    }

    /* Stack first name and last name vertically */
    .input-row {
        flex-direction: column;
        gap: 0;
    }

    .header {
        margin-bottom: 20px;
    }

    .header h1 {
        font-size: 22px;
    }

    .header p {
        font-size: 14px;
    }

    .form-card {
        padding: 20px 16px;
        border-radius: 10px;
    }

    .field {
        margin-bottom: 16px;
    }

    label {
        font-size: 13px;
    }

    input,
    select,
    textarea {
        font-size: 14px;
        padding: 10px;
    }

    button {
        font-size: 15px;
        padding: 13px;
    }

    .post-submit-note {
        font-size: 12px;
        margin-top: 16px;
    }
}

/* ── Small phones (360px) ── */
@media (max-width: 360px) {
    .back a {
        margin-left: 12px;
        font-size: 13px;
    }

    .body {
        padding: 16px 10px;
    }

    .header h1 {
        font-size: 20px;
    }

    .header p {
        font-size: 13px;
    }

    .form-card {
        padding: 16px 12px;
    }

    .field {
        margin-bottom: 14px;
    }

    label {
        font-size: 12px;
    }

    input,
    select,
    textarea {
        font-size: 13px;
        padding: 9px;
    }

    button {
        font-size: 14px;
        padding: 12px;
    }

    .post-submit-note {
        font-size: 11px;
    }
}


/* Donate_Food Start Here */



#bodys {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

.margin{
    margin-top: 100px;
}

.portal-frame {
    max-width: 1240px;
    margin: 50px auto;
    padding: 0 25px;
}

.dual-column-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.primary-flow {
    flex: 2;
    min-width: 300px;
}

.status-wing {
    flex: 1;
    min-width: 280px;
}

.sub-label {
    display: block;
    font-weight: 700;
    text-transform: none;
    color: #444;
    margin-bottom: 5px;
    font-size: 30px;
}

.main-heading {
    color: #f57c15;
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: "poppins", sans-serif;
}

.bold-lead {
    font-weight: 600;
    font-size: 19px;
    margin-bottom: 25px;
}

.narrative-section p {
    margin-bottom: 18px;
    font-size: 20px;
}

.schedule-matrix {
    width: 100%;
    border-collapse: collapse;
    margin: 35px 0;
}

.schedule-matrix th {
    background-color: #f8faf9;
    border: 1px solid #f57c15;
    color: #f57c15;
    padding: 18px;
    text-align: left;
    font-size: 18px;
}

.schedule-matrix td {
    border: 1px solid #f57c15;
    padding: 14px;
    vertical-align: top;
    font-size: 18px;
}

.priority-item-box {
    background-color: #f0f7f3;
    padding: 30px;
    margin-bottom: 25px;
    border-top: 5px solid #f57c15;
}

.surplus-item-box {
    background-color: #f0f7f3;
    padding: 20px 30px 30px 20px;
    margin-bottom: 25px;
    border-top: 5px solid #f57c15;
}

.surplus-item-box:hover {
    background-color: #e7d5c6;
}

.bullet-list {
    list-style: none;
    margin-top: 15px;
}

.bullet-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 17px;
    font-weight: bold;
}

.bullet-list li::before {
    color: #f57c15;
    position: absolute;
    left: 0;
    font-weight: bold;

}

.visual-container img {
    width: 100%;
    display: block;
    border-radius: 2px;
}


.acknowledgment-footer {
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-top: 40px;
    font-size: 20px;
}

.action-return-link {
    display: inline-flex;
    align-items: center;
    background-color: #f57c15;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 35px;
    transition: background 0.2s;
}

.action-return-link:hover {
    background-color: #fa953c !important;
}

.tablet {
    text-decoration: none;
    color: black;
    background-color: #945b2a;
}

.action-return-link:hover {
    background-color: #f57c15;
}

.glyph {
    margin-right: 12px;
}

.inline-link,
.detail-anchor {
    color: #f57c15;
    font-weight: 600;
    text-decoration: underline;
}

/* ── Tablet (768px) ── */
@media (max-width: 768px) {
    .portal-frame {
        margin: 30px auto;
        padding: 0 16px;
    }

    /* Stack columns vertically */
    .dual-column-grid {
        flex-direction: column;
        gap: 24px;
    }

    .primary-flow,
    .status-wing {
        flex: unset;
        width: 100%;
        min-width: unset;
    }

    .main-heading {
        font-size: 34px;
    }

    .sub-label {
        font-size: 20px;
    }

    .bold-lead {
        font-size: 16px;
    }

    .narrative-section p {
        font-size: 15px;
    }

    .schedule-matrix {
        margin: 20px 0;
    }

    .schedule-matrix th,
    .schedule-matrix td {
        font-size: 14px;
        padding: 10px;
    }

    .acknowledgment-footer {
        font-size: 15px;
        margin-top: 30px;
        padding-top: 20px;
    }

    .action-return-link {
        padding: 12px 22px;
        font-size: 15px;
        margin-top: 24px;
    }

    .priority-item-box,
    .surplus-item-box {
        padding: 20px;
    }

    .bullet-list li {
        font-size: 15px;
    }
}

/* ── Mobile (480px) ── */
@media (max-width: 480px) {
    .portal-frame {
        margin: 20px auto;
        padding: 0 12px;
    }

    .main-heading {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .sub-label {
        font-size: 18px;
    }

    .bold-lead {
        font-size: 15px;
    }

    .narrative-section p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    /* Make table scroll horizontally on small screens */
    .venue-directory {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .schedule-matrix {
        min-width: 500px;
        margin: 16px 0;
    }

    .schedule-matrix th,
    .schedule-matrix td {
        font-size: 13px;
        padding: 9px;
    }

    .acknowledgment-footer {
        font-size: 14px;
        margin-top: 20px;
        padding-top: 16px;
    }

    .action-return-link {
        padding: 10px 18px;
        font-size: 14px;
        margin-top: 20px;
    }

    .priority-item-box,
    .surplus-item-box {
        padding: 16px;
    }

    .bullet-list li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .dual-column-grid {
        gap: 20px;
    }
}

/* ── Small phones (360px) ── */
@media (max-width: 360px) {
    .portal-frame {
        margin: 16px auto;
        padding: 0 10px;
    }

    .main-heading {
        font-size: 24px;
    }

    .sub-label {
        font-size: 16px;
    }

    .bold-lead {
        font-size: 14px;
    }

    .narrative-section p {
        font-size: 13px;
    }

    .schedule-matrix th,
    .schedule-matrix td {
        font-size: 12px;
        padding: 8px;
    }

    .acknowledgment-footer {
        font-size: 13px;
    }

    .action-return-link {
        padding: 9px 16px;
        font-size: 13px;
    }

    .priority-item-box,
    .surplus-item-box {
        padding: 12px;
    }

    .bullet-list li {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .dual-column-grid {
        gap: 16px;
    }
}




/* partner_with_us start here*/



.alliance-bg {
    font-family: Arial, Helvetica, sans-serif;
    color: #1a202c;
    line-height: 1.7;
    margin-top: 50px;
    padding: 60px 20px;
}

.alliance-container {
    max-width: 1100px;
    margin: 0 auto;
}

.alliance-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.alliance-main {
    flex: 2.5;
    min-width: 300px;
}

.corp-header h1 {
    font-family: "poppins", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #f57c15;
    margin-bottom: 25px;
}

.corp-header p {
    font-size: 20px;
    margin-bottom: 20px;
}

.corp-list {
    margin: 25px 0 0;
    padding-left: 20px;
}

.corp-list li {
    margin-bottom: 12px;
    font-size: 18px;
    list-style-type: disc;
}

.alliance-footer {
    padding-top: 30px;
    font-weight: 600;
    font-size: 20px;
}

.alliance-sidebar {
    flex: 1;
    min-width: 280px;
}

.sidebar-card {
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 12px;
}

.contact-card {
    background-color: rgb(82, 79, 79);
    color: white;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: #f57c15;
}

.sidebar-btn {
    display: block;
    margin-top: 20px;
    background-color: #f57c15;
    color: white;
    text-align: center;
    padding: 14px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
}

.sidebar-btn:hover {
    background-color: #fa953c;
}

.impact-card {
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
}

.stat-highlight {
    font-size: 48px;
    font-weight: 800;
    color: #f57c15;
    margin: 10px 0;
}

/* ════════════════════════
   BREAKPOINTS
════════════════════════ */

/* ── Large tablet (1024px) ── */
@media (max-width: 1024px) {
    .alliance-bg {
        padding: 40px 20px;
    }

    .alliance-grid {
        gap: 30px;
    }

    .corp-header h1 {
        font-size: 26px;
    }

    .corp-header p {
        font-size: 17px;
    }

    .corp-list li {
        font-size: 16px;
    }

    .alliance-footer {
        font-size: 17px;
    }

    .stat-highlight {
        font-size: 40px;
    }

    .sidebar-card {
        padding: 24px;
    }
}

/* ── Tablet (768px) ── */
@media (max-width: 768px) {
    .alliance-bg {
        padding: 30px 16px;
    }

    /* Stack sidebar below main content */
    .alliance-grid {
        flex-direction: column;
        gap: 24px;
    }

    .alliance-main {
        min-width: unset;
        width: 100%;
    }

    .alliance-sidebar {
        min-width: unset;
        width: 100%;
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    /* Side by side cards on tablet */
    .sidebar-card {
        flex: 1;
        min-width: 240px;
        margin-bottom: 0;
    }

    .corp-header h1 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .corp-header p {
        font-size: 15px;
    }

    .corp-list {
        margin: 16px 0 0;
    }

    .corp-list li {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .alliance-footer {
        font-size: 15px;
        padding-top: 20px;
    }

    .stat-highlight {
        font-size: 36px;
    }
}

/* ── Mobile (480px) ── */
@media (max-width: 480px) {
    .alliance-bg {
        padding: 24px 12px;
    }

    .corp-header h1 {
        font-size: 19px;
        margin-bottom: 12px;
    }

    .corp-header p {
        font-size: 14px;
    }

    .corp-list li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .alliance-footer {
        font-size: 14px;
        padding-top: 16px;
    }

    /* Stack sidebar cards vertically */
    .alliance-sidebar {
        flex-direction: column;
        gap: 16px;
    }

    .sidebar-card {
        min-width: unset;
        width: 100%;
        padding: 20px;
    }

    .sidebar-btn {
        padding: 12px;
        font-size: 14px;
    }

    .stat-highlight {
        font-size: 32px;
    }
}

/* ── Small phones (360px) ── */
@media (max-width: 360px) {
    .alliance-bg {
        padding: 20px 10px;
    }

    .corp-header h1 {
        font-size: 17px;
    }

    .corp-header p {
        font-size: 13px;
    }

    .corp-list li {
        font-size: 13px;
    }

    .alliance-footer {
        font-size: 13px;
    }

    .sidebar-card {
        padding: 16px;
    }

    .sidebar-btn {
        padding: 10px;
        font-size: 13px;
    }

    .stat-highlight {
        font-size: 28px;
    }
}


/* Location start here */


.loc-body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.5;
}

.loc-main {
    max-width: 1100px;
    margin: 40px 0 40px 70px;
    padding: 0 20px;
}

.loc-intro h1 {
    font-family: "poppins", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: rgb(3, 58, 58);
    margin-bottom: 15px;
}

.sect h3 {
    font-family: "poppins", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: rgb(3, 58, 58);
}

.sect p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: black;
    line-height: 30px;
    margin-bottom: 70px;
}

.loc-intro p {
    font-size: 22px;
    margin-bottom: 40px;
    max-width: 800px;
}

.loc-card {
    border: 1px solid #000;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.loc-card-grid {
    display: flex;
    gap: 70px;
}

.loc-map-area {
    flex: 1;
}

.loc-info-area {
    flex: 2;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}

.loc-info-area h2 {
    font-size: 24px;
    margin-bottom: 5px;
    font-family: "poppins", sans-serif;
    color: rgb(3, 58, 58);
}

.loc-phone {
    font-weight: 700;
    margin-bottom: 20px;
}

.loc-details-row {
    display: flex;
    gap: 40px;
}

.loc-times-col,
.loc-address-col {
    flex: 1;
}

.loc-address-col h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.loc-times-table {
    width: 100%;
    border-collapse: collapse;
}

.loc-times-table td {
    padding: 4px 8px;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.loc-open {
    background-color: #f9f9f9;
    font-weight: 700;
}

address {
    font-style: normal;
    font-size: 15px;
    margin-bottom: 20px;
}

.loc-links a {
    display: block;
    color: #004a32;
    font-weight: 700;
    text-decoration: underline;
    margin-bottom: 5px;
    font-size: 14px;
}

/* ════════════════════════
   BREAKPOINTS
════════════════════════ */

/* ── Large tablet (1024px) ── */
@media (max-width: 1024px) {
    .loc-main {
        margin: 30px 0 30px 30px;
        padding: 0 16px;
    }

    .loc-intro h1 {
        font-size: 38px;
    }

    .loc-intro p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .sect h3 {
        font-size: 24px;
    }

    .sect p {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .loc-card-grid {
        gap: 40px;
    }

    .loc-info-area {
        font-size: 17px;
    }

    .loc-info-area h2 {
        font-size: 20px;
    }

    .loc-details-row {
        gap: 24px;
    }
}

/* ── Tablet (768px) ── */
@media (max-width: 768px) {
    .loc-main {
        margin: 24px 0 24px 16px;
        padding: 0 14px;
    }

    .loc-intro h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .loc-intro p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .sect h3 {
        font-size: 20px;
    }

    .sect p {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 30px;
    }

    .loc-card {
        padding: 16px;
    }

    /* Stack map and info vertically */
    .loc-card-grid {
        flex-direction: column;
        gap: 20px;
    }

    .loc-map-area iframe {
        height: 220px;
    }

    .loc-info-area {
        font-size: 15px;
    }

    .loc-info-area h2 {
        font-size: 18px;
    }

    /* Stack times and address vertically */
    .loc-details-row {
        flex-direction: column;
        gap: 20px;
    }

    .loc-address-col h3 {
        font-size: 17px;
    }

    .loc-times-table td {
        font-size: 14px;
        padding: 4px 6px;
    }

    address {
        font-size: 14px;
    }

    .loc-links a {
        font-size: 13px;
    }
}

/* ── Mobile (480px) ── */
@media (max-width: 480px) {
    .loc-main {
        margin: 16px 0 16px 10px;
        padding: 0 10px;
    }

    .loc-intro h1 {
        font-size: 24px;
    }

    .loc-intro p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .sect h3 {
        font-size: 18px;
    }

    .sect p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .loc-card {
        padding: 12px;
        border-radius: 6px;
    }

    .loc-map-area iframe {
        height: 200px;
    }

    .loc-info-area {
        font-size: 14px;
    }

    .loc-info-area h2 {
        font-size: 16px;
    }

    .loc-phone {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .loc-address-col h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .loc-times-table td {
        font-size: 13px;
        padding: 3px 5px;
    }

    address {
        font-size: 13px;
        line-height: 1.7;
    }

    .loc-links a {
        font-size: 13px;
        margin-bottom: 6px;
    }
}

/* ── Small phones (360px) ── */
@media (max-width: 360px) {
    .loc-main {
        margin: 12px 0 12px 6px;
        padding: 0 8px;
    }

    .loc-intro h1 {
        font-size: 20px;
    }

    .loc-intro p {
        font-size: 13px;
    }

    .sect h3 {
        font-size: 16px;
    }

    .sect p {
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 16px;
    }

    .loc-card {
        padding: 10px;
    }

    .loc-map-area iframe {
        height: 180px;
    }

    .loc-info-area {
        font-size: 13px;
    }

    .loc-info-area h2 {
        font-size: 15px;
    }

    .loc-phone {
        font-size: 13px;
    }

    .loc-address-col h3 {
        font-size: 14px;
    }

    .loc-times-table td {
        font-size: 12px;
        padding: 3px 4px;
    }

    address {
        font-size: 12px;
    }

    .loc-links a {
        font-size: 12px;
    }
}


/* Contact_Us_Start_Here */


.cnt-body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

.cnt-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.cnt-header h1 {
    font-family: "poppins", sans-serif;
    font-size: 52px;
    color: rgb(3, 58, 58);
}

.cnt-header p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cnt-helpline-box {
    max-width: 900px;
    background-color: rgb(3, 58, 58);
    color: #eee;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 50px;
    font-size: 20px;
}

.cnt-helpline-box h2 {
    margin-bottom: 15px;
    font-size: 22px;
}

.cnt-sub-info {
    margin-top: 20px;
    font-size: 14px;
}

.cnt-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.cnt-form-col h3 {
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 600;
    color: rgb(3, 58, 58);
}

.cnt-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
}

.cnt-form select,
.cnt-form input,
.cnt-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 16px;
}

.cnt-details-col h3 {
    color: rgb(3, 58, 58);
}

.cnt-address-col h3 {
    color: rgb(3, 58, 58);
}

.cnt-submit-btn {
    background-color: rgb(3, 58, 58);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.cnt-detail-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #333;
    margin-bottom: 20px;
}

.cnt-icon-row {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 18px;
}

.cnt-icon {
    font-size: 24px;
    color: #00a651;
}

address {
    font-style: normal;
    margin: 15px 0;
    font-size: 18px;
}

.cnt-map-link {
    color: #004a32;
    font-weight: 700;
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .cnt-main-grid {
        grid-template-columns: 1fr;
    }
}




/* ADMIN LAYOUT STYLING */



/* ADMIN DASHBOARD*/

.admin-body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f6f8;
    padding: 40px;
}

.admin-body h1 {
    font-family: "poppins", sans-serif;
    color: rgb(3, 58, 58);
    margin-bottom: 50px;
    text-align: center;
}

.admin-body h2 {
    font-family: "poppins", sans-serif;
    color: rgb(3, 58, 58);
    margin-bottom: 10px;
}

.sect {
    background: white;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 10px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 50px;
}

th,
td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

th {
    background: rgb(1, 119, 119);
    color: white;
}

/* MODAL */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 320px;
}

.modal-buttons {
    margin-top: 20px;
}

.modal-buttons button {
    margin: 5px;
}

.confirm-delete {
    background: red !important;
}

.cancel-delete {
    background: gray !important;
}

.cancel-delete:hover {
    background: rgb(78, 76, 76) !important;
}



/* Donation Page */

.page{
    font-family: "poppins";
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    margin: 200px 0;
}

.page h1{
    font-size: 20px;
    color: rgb(2, 29, 29);
    margin-bottom: 20px;
}

.page a:hover{
    background-color: rgb(2, 29, 29);
    color: white;
    text-decoration: none;
}




/* Admin Logins Styling */

#body{
font-family:Poppins;
background:#f4f6f8;
display:flex;
justify-content:center;
align-items:center;
height:100vh;
}

.login-box{
background:white;
padding:40px;
border-radius:10px;
width:350px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.passord-box-input{
width:100%;
padding:10px;
margin:10px 0;
border:1px solid #ddd;
border-radius:5px;
}

.password-box{
position:relative;
}

.password-box i{
position:absolute;
right:10px;
top:50%;
transform:translateY(-50%);
cursor:pointer;
color:#777;
}

.admin-button{
width:100%;
padding:10px;
background:#f57c15;
color:white;
border:none;
border-radius:5px;
cursor:pointer;
margin-top:10px;
}

.admin-button:disabled{
opacity:0.7;
cursor:not-allowed;
}

.forgot{
font-size:14px;
color:#f57c15;
cursor:pointer;
margin-top:8px;
display:inline-block;
}
