/* ==========================================================================
   1. GLOBAL IMPORTS & ROOT VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;500;600;700;800&family=Rubik:wght@400;500;600&display=swap');

:root {
    --primary-color: #7ab92a;
    --heading-color: #555555;
    --text-color: #666666;
    --light-text: #555555;
    --white: #ffffff;
    --border-color: #eeeeee;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #333333;
    font-size: 16px;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


/* ==========================================================================
   2. LANDING PAGE STYLES
   ========================================================================== */
/* ==========================================================================
   HERO SLIDER CONFIGURATION (FIXED)
   ========================================================================== */
.slider-wrapper {
    position: relative;
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
    background-color: #ffffff;
}

.slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 5vw; /* Fixed padding for full alignment */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.slider::-webkit-scrollbar {
    display: none;
}

.slide {
    flex: 0 0 100%; 
    max-width: 1100px;
    height: 420px;
    margin: 0 auto;
    scroll-snap-align: center;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: #111111;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 70%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 8%; /* Safe spacing for text */
    right: 8%;
    transform: translateY(-50%);
    color: #ffffff;
    max-width: 520px;
    z-index: 2;
}

.slide-content h2 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    word-break: break-word;
 } /* 

}
/* Give Monthly Program */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.mission-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.mission-card .card-image-box {
    position: relative;
    height: 240px;
    background-size: cover;
    background-position: center;
    padding: 16px;
}

.tax-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #fff3e0;
    color: #e65100;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    z-index: 2;
}

.card-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
    color: #ffffff;
}

.mission-sub {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    display: block;
    margin-bottom: 2px;
}

.mission-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.card-content-box {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.card-desc {
    font-size: 15px;
    color: #333333;
    line-height: 1.4;
    margin-bottom: 8px;
}

.highlight-text {
    color: #7ab92a;
    font-weight: 600;
}

.action-btn {
    display: inline-block;
    padding: 10px 16px;
    background-color: rgb(122, 185, 42);
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.action-btn:hover {
    background-color: rgb(100, 155, 32);
}

/* Ticker Bar */
.ticker-wrapper {
    background-color: #fcf4f4;
    padding: 16px 0;
    margin: 50px 0;
    overflow: hidden;
    border-top: 1px solid #f2e2e2;
    border-bottom: 1px solid #f2e2e2;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    font-size: 16px;
    animation: ticker-scroll 25s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #333333;
}

.ticker-item .amount {
    color: rgb(122, 185, 42);
    font-weight: 700;
}

.ticker-star {
    color: rgb(122, 185, 42);
    font-size: 14px;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Fundraiser Cards */
.fundraiser-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.fundraiser-card .card-image-box {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    padding: 16px;
}

.fundraiser-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.fundraiser-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
    line-height: 1.35;
    height: 46px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.fundraiser-by {
    font-size: 13px;
    color: #777;
    margin-bottom: 16px;
    line-height: 1.4;
}

.fundraiser-raised-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.raised-text strong {
    font-size: 20px;
    color: #111;
    display: block;
    line-height: 1.1;
}

.raised-text span {
    font-size: 12px;
    color: #777;
}

.see-more-wrapper {
    text-align: right;
    margin-top: 24px;
    margin-bottom: 50px;
}

.see-more-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.2s ease;
}

.see-more-btn:hover {
    background-color: #eee;
}

/* Stats Section */
.stats-section {
    padding: 50px 20px;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.stats-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stats-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 10px;
    font-family: 'Nunito Sans', sans-serif;
}

.stats-card {
    background: #f9fbfd;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: #666666;
    margin-top: 4px;
}

.stats-right-card {
    background: #fdf8f8;
    border-radius: 20px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.impact-image-container {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.impact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.3;
    margin-bottom: 10px;
    font-family: 'Nunito Sans', sans-serif;
}

.impact-content p {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 24px;
    line-height: 1.5;
}

.btn-impact {
    display: inline-block;
    padding: 12px 28px;
    background-color: rgb(100, 155, 32);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.btn-impact:hover {
    background-color: rgb(100, 155, 32);
}

/* Promo Banner Section */
.promo-banner-section {
    padding: 40px 20px;
}

.promo-banner-card {
    background-color: #fcf4f2;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 280px;
    position: relative;
}

.promo-content {
    flex: 1;
    padding: 40px 50px;
    max-width: 600px;
    z-index: 2;
}

.promo-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.25;
    margin-bottom: 12px;
}

.promo-subtitle {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.5;
    margin-bottom: 24px;
}

.btn-green {
    display: inline-block;
    padding: 12px 28px;
    background-color: #7ab92a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 4px 12px rgba(122, 185, 42, 0.25);
}

.btn-green:hover {
    background-color: #689e22;
    transform: translateY(-1px);
}

.promo-image-box {
    flex: 1;
    position: relative;
    height: 100%;
    min-height: 280px;
    align-self: stretch;
}

.promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.promo-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, #fcf4f2 0%, rgba(252, 244, 242, 0) 100%);
}

/* FAQ Section */
.faq-section {
    padding: 60px 20px;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 40px;
    align-items: start;
}

.faq-main-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 16px;
}

.faq-desc {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.6;
}

.faq-email {
    color: #7ab92a;
    text-decoration: none;
    font-weight: 600;
}

.faq-email:hover {
    text-decoration: underline;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
}

.faq-item[open] {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-question {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111111;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-icon::before {
    content: '+';
    font-size: 16px;
    color: #555;
    font-weight: 600;
}

.faq-item[open] .faq-icon::before {
    content: '−';
    color: #111;
}

.faq-answer {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #f4f4f4;
    font-size: 0.98rem;
    color: #555555;
    line-height: 1.6;
}


/* ==========================================================================
   3. PRIVACY POLICY PAGE STYLES (.privacy-container)
   ========================================================================== */
.privacy-policy {
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
}

.privacy-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 42px 55px 80px;
}

.privacy-container h1 {
    margin: 0 0 8px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.3px;
    color: var(--heading-color);
}

.last-updated {
    margin-bottom: 42px;
    font-family: "Rubik", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #777777;
}

.privacy-container section {
    margin-bottom: 44px;
}

.privacy-container h2 {
    margin: 0 0 21px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.2px;
    color: var(--heading-color);
}

.privacy-container h3 {
    margin: 28px 0 14px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.45;
    color: var(--heading-color);
}

.privacy-container p {
    margin: 0 0 19px;
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85;
    color: var(--text-color);
}

.privacy-container p:last-child {
    margin-bottom: 0;
}

.privacy-container ul {
    margin: 8px 0 22px;
    padding-left: 28px;
}

.privacy-container li {
    margin: 0 0 10px;
    padding-left: 5px;
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-color);
}

.privacy-container li::marker {
    color: var(--primary-color);
    font-size: 14px;
}

.privacy-container strong {
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    color: var(--heading-color);
}

.privacy-container a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-container a:hover {
    color: #659c20;
    text-decoration: underline;
}

.contact-details {
    margin-top: 8px;
    padding: 22px 25px;
    border-left: 3px solid var(--primary-color);
    background: #fafafa;
}

.contact-details p {
    margin-bottom: 7px;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.policy-note {
    margin-top: 10px;
    padding: 22px 25px;
    border-left: 3px solid var(--primary-color);
    background: #fafafa;
}

.policy-note p {
    margin: 0;
}


/* ==========================================================================
   4. TERMS & CONDITIONS PAGE STYLES (.terms-container)
   ========================================================================== */
.terms-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 70px 25px;
}

.terms-container h1 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--heading-color);
    margin-bottom: 35px;
    text-align: left;
}

.terms-container h1 span {
    color: var(--primary-color);
}

.terms-container h2 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--heading-color);
    margin-top: 42px;
    margin-bottom: 18px;
}

.terms-container h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--heading-color);
    margin-top: 30px;
    margin-bottom: 14px;
}

.terms-container p {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85;
    color: var(--text-color);
    margin-bottom: 18px;
}

.terms-container strong {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    color: var(--heading-color);
}

.terms-container b {
    font-weight: 600;
    color: var(--heading-color);
}

.terms-container a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.terms-container a:hover {
    color: #5f941c;
    text-decoration: underline;
}

.terms-container ul,
.terms-container ol {
    margin: 0 0 22px 25px;
    padding-left: 20px;
}

.terms-container ul {
    list-style-type: disc;
}

.terms-container ol {
    list-style-type: decimal;
}

.terms-container li {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 9px;
    padding-left: 5px;
}

.terms-container li::marker {
    color: var(--primary-color);
    font-weight: 600;
}

.terms-container ul ul,
.terms-container ol ol,
.terms-container ul ol,
.terms-container ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

.terms-container hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 35px 0;
}

.terms-container .last-updated {
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    color: var(--light-text);
    margin-bottom: 30px;
}

.terms-container .last-updated strong {
    color: var(--heading-color);
}

.terms-container .info-box {
    background: #f7fbf2;
    border-left: 4px solid var(--primary-color);
    padding: 20px 22px;
    margin: 25px 0;
    border-radius: 4px;
}

.terms-container .info-box p {
    margin-bottom: 0;
}

.terms-container .contact-section {
    margin-top: 45px;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 8px;
}

.terms-container .contact-section h2 {
    margin-top: 0;
}

.terms-container .contact-section p {
    margin-bottom: 10px;
}

.primary-text {
    color: var(--primary-color);
}


/* ==========================================================================
   5. COMBINED RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Large Desktop */
@media (min-width: 1400px) {
    .privacy-container {
        max-width: 1250px;
        padding-left: 60px;
        padding-right: 60px;
    }
}

/* Tablet / Laptop */
@media (max-width: 1024px) {
    .privacy-container {
        max-width: 100%;
        padding: 40px 40px 70px;
    }

    .privacy-container h1 { font-size: 27px; }
    .privacy-container h2 { font-size: 23px; }
    .privacy-container h3 { font-size: 18px; }
    .privacy-container p,
    .privacy-container li { font-size: 16px; }
}

@media (max-width: 991px) {
    .terms-container {
        max-width: 960px;
        padding: 55px 25px;
    }

    .terms-container h1 { font-size: 36px; margin-bottom: 30px; }
    .terms-container h2 { font-size: 26px; margin-top: 36px; }
    .terms-container h3 { font-size: 21px; }
    .terms-container p,
    .terms-container li { font-size: 16px; line-height: 1.8; }
}

/* Mobile */
@media (max-width: 768px) {
    /* Landing Page Responsive */
    .slide {
        height: 320px;
        flex: 0 0 92vw;
    }
    .slide-content h2 { font-size: 1.4rem; }
    .slider-arrow { display: none; }
    .stats-wrapper { grid-template-columns: 1fr; }
    
    .promo-banner-card {
        flex-direction: column-reverse;
        text-align: center;
    }
    .promo-content { padding: 30px 20px; }
    .promo-image-box {
        width: 100%;
        height: 200px;
        min-height: 200px;
    }
    .promo-image-overlay {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
        background: linear-gradient(0deg, #fcf4f2 0%, rgba(252, 244, 242, 0) 100%);
    }

    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Privacy Responsive */
    .privacy-container { padding: 30px 20px 55px; }
    .privacy-container h1 { margin-bottom: 8px; font-size: 23px; line-height: 1.4; }
    .last-updated { margin-bottom: 34px; font-size: 14px; }
    .privacy-container section { margin-bottom: 36px; }
    .privacy-container h2 { margin-bottom: 17px; font-size: 21px; line-height: 1.4; }
    .privacy-container h3 { margin-top: 24px; margin-bottom: 13px; font-size: 18px; }
    .privacy-container p { margin-bottom: 17px; font-size: 15px; line-height: 1.8; }
    .privacy-container ul { margin-top: 6px; margin-bottom: 20px; padding-left: 23px; }
    .privacy-container li { margin-bottom: 9px; padding-left: 2px; font-size: 15px; line-height: 1.75; }
    .contact-details { padding: 18px 18px; }
    .policy-note { padding: 18px; }

    /* Terms Responsive */
    .terms-container { width: 100%; padding: 40px 20px; }
    .terms-container h1 { font-size: 30px; line-height: 1.25; margin-bottom: 25px; }
    .terms-container h2 { font-size: 23px; line-height: 1.35; margin-top: 32px; margin-bottom: 15px; }
    .terms-container h3 { font-size: 20px; margin-top: 25px; margin-bottom: 12px; }
    .terms-container p { font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
    .terms-container ul,
    .terms-container ol { margin-left: 15px; padding-left: 18px; }
    .terms-container li { font-size: 15px; line-height: 1.75; margin-bottom: 8px; }
    .terms-container .contact-section { padding: 22px 18px; margin-top: 35px; }
    .terms-container .info-box { padding: 17px 18px; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .privacy-container { padding: 25px 16px 45px; }
    .privacy-container h1 { font-size: 21px; }
    .privacy-container h2 { font-size: 20px; }
    .privacy-container h3 { font-size: 17px; }
    .privacy-container p,
    .privacy-container li { font-size: 14.5px; }
    .privacy-container ul { padding-left: 21px; }
    .contact-details,
    .policy-note { padding: 16px; }

    .terms-container { padding: 30px 16px; }
    .terms-container h1 { font-size: 27px; }
    .terms-container h2 { font-size: 21px; }
    .terms-container h3 { font-size: 18px; }
    .terms-container p,
    .terms-container li { font-size: 14.5px; }
}