/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    position: relative;
    overflow-x: hidden;
}

/* Background Slideshow */
.background-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 0.15;
}

/* Navigation Bar */
.navbar {
    background-color: rgba(76, 175, 80, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    height: 140px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
    flex-shrink: 0;
}

.logo {
    height: 130px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.brand-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 28px;
    line-height: 1.1;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-line-1 {
    display: block;
    margin-bottom: 2px;
}

.brand-line-2 {
    display: block;
    font-size: 24px;
}

.brand-text .eco {
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        0 0 5px rgba(255,255,255,0.3),
        0 2px 4px rgba(0,0,0,0.5),
        2px 2px 0px rgba(46, 125, 50, 0.8);
    letter-spacing: 1px;
}

.brand-text .light {
    font-weight: 300;
    color: #ffeb3b;
    text-shadow: 
        0 0 10px rgba(255, 235, 59, 0.8),
        0 0 20px rgba(255, 235, 59, 0.4),
        0 2px 4px rgba(0,0,0,0.5),
        2px 2px 0px rgba(200, 230, 201, 0.6);
    letter-spacing: 1px;
}

.brand-text .innovations {
    font-weight: 400;
    color: #e8f5e8;
    text-shadow: 
        0 0 3px rgba(232, 245, 232, 0.5),
        0 2px 4px rgba(0,0,0,0.4);
    letter-spacing: 0.5px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
}

.nav-links li {
    position: relative;
}

/* Regular Navigation Buttons */
.nav-button {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    display: inline-block;
    background: transparent;
    border: 2px solid transparent;
}

.nav-button:hover {
    background-color: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Donate Button - Modified to be white, bold, and attention-gripping without loud colors */
.donate-button {
    background-color: #ffffff; /* White background */
    color: #2e7d32;             /* Dark green text from your brand */
    border: 3px solid #66bb6a;  /* A slightly thicker, prominent green border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(102, 187, 106, 0.5); /* Soft shadow with a subtle green glow */
    font-weight: 700;           /* Make it bold */
    font-size: 16px;            /* Slightly larger font for prominence */
    padding: 12px 22px;         /* Adjust padding for the new size */
    text-transform: uppercase;  /* Make it uppercase for a bold look */
    letter-spacing: 0.8px;      /* Slightly spaced letters */
    transform: scale(1.02);     /* Start slightly larger to stand out */
    transition: all 0.3s ease;  /* Smooth transition for hover effects */
}

.donate-button:hover {
    background-color: #2e7d32; /* Invert colors on hover for a strong visual cue */
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(255, 255, 255, 0.7); /* Stronger shadow and white glow */
    transform: translateY(-3px) scale(1.05); /* Lift and scale slightly more on hover */
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(46, 125, 50, 0.95);
    backdrop-filter: blur(10px);
    list-style: none;
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 15px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin: 2px 10px;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    color: #ffeb3b;
}

/* Main Content Area */
main {
    margin-top: 140px;
    min-height: calc(100vh - 140px);
    position: relative;
    z-index: 1;
    padding: 60px 20px;
}

/* Content backdrop for better readability */
.hero-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #4caf50;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.hero-description {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #4caf50, #66bb6a);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
}

/* Ripple effect for CTA button */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        height: auto;
        padding: 15px 0;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }

    .logo-section {
        gap: 15px;
        justify-content: center;
    }
    
    .logo {
        height: 100px;
    }
    
    .brand-text {
        font-size: 22px;
    }
    
    .brand-line-2 {
        font-size: 18px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .nav-button {
        font-size: 14px;
        padding: 10px 16px;
    }

    .dropdown-menu {
        position: relative;
        margin-top: 5px;
    }

    .hero-section {
        padding: 40px 30px;
        margin: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    main {
        margin-top: 200px;
    }
}

@media (max-width: 480px) {
    .logo-section {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .logo {
        height: 80px;
    }
    
    .brand-text {
        font-size: 18px;
    }
    
    .brand-line-2 {
        font-size: 16px;
    }

    .nav-links {
        flex-direction: column;
        gap: 8px;
    }

    .nav-button {
        font-size: 13px;
        padding: 8px 14px;
    }

    .hero-section {
        padding: 30px 20px;
        margin: 10px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    main {
        margin-top: 250px;
        padding: 40px 15px;
    }
}

/* Preloader for images */
.preloader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    color: #4caf50;
    font-size: 1.2rem;
    display: none;
}
/* General Page Content Styles */
.page-header-section {
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 180px; /* Adjust based on navbar height + desired spacing */
}

.page-title {
    font-size: 3rem;
    color: #2e7d32;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.page-description {
    font-size: 1.3rem;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

.content-section {
    max-width: 1200px;
    margin: 60px auto; /* Increased margin for better separation */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.section-title {
    font-size: 2.5rem;
    color: #4caf50;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffeb3b; /* Highlight color */
    border-radius: 2px;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.image-gallery {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.image-gallery img {
    max-width: 45%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-gallery img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Team and Board Section Specific Styles */
.team-section, .board-section {
    text-align: center;
}

.team-grid, .board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member, .board-member {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.team-member:hover, .board-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.team-member img, .board-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #4caf50;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.team-member h3, .board-member h3 {
    font-size: 1.8rem;
    color: #2e7d32;
    margin-bottom: 8px;
}

.team-member .role, .board-member .role {
    font-size: 1.1rem;
    color: #66bb6a;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member p, .board-member p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}


/* Responsive Adjustments for new pages */
@media (max-width: 1024px) {
    .page-header-section, .content-section {
        margin: 40px auto;
        padding: 30px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .team-grid, .board-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .image-gallery img {
        max-width: 90%; /* Stack images on smaller screens */
    }
}
/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar {
        height: auto;
        padding: 10px 0;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 10px 20px;
    }

    .logo-section {
        gap: 10px;
        justify-content: flex-start;
        flex: 1;
    }
    
    .logo {
        height: 70px;
    }
    
    .brand-text {
        font-size: 16px;
    }
    
    .brand-line-2 {
        font-size: 14px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(46, 125, 50, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 20px 40px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        gap: 5px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-button {
        width: 100%;
        text-align: left;
        font-size: 16px;
        padding: 14px 20px;
        border-radius: 10px;
        display: block;
    }

    .donate-button {
        font-size: 16px;
        padding: 14px 20px;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        margin-top: 0;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        border-radius: 8px;
        transition: all 0.3s ease, max-height 0.4s ease;
    }

    .dropdown-menu.active {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        margin-top: 8px;
    }

    .dropdown-menu a {
        font-size: 14px;
        padding: 12px 20px;
    }

    .hero-section {
        padding: 40px 30px;
        margin: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    main {
        margin-top: 100px;
    }

    .page-header-section {
        margin-top: 120px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 60px;
    }
    
    .brand-text {
        font-size: 14px;
    }
    
    .brand-line-2 {
        font-size: 12px;
    }

    .nav-links {
        width: 260px;
        padding: 80px 15px 30px;
    }

    .nav-button {
        font-size: 15px;
        padding: 12px 16px;
    }

    .donate-button {
        font-size: 15px;
        padding: 12px 16px;
    }

    .hero-section {
        padding: 30px 20px;
        margin: 10px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    main {
        margin-top: 90px;
        padding: 40px 15px;
    }

    .page-header-section {
        margin-top: 110px;
    }
}
@media (max-width: 768px) {
    .page-header-section {
        padding: 30px 20px;
        margin-top: 180px; /* Adjusted for smaller navbar */
    }

    .page-title {
        font-size: 2rem;
    }

    .page-description {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 30px 20px;
        margin: 30px auto;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .team-grid, .board-grid {
        grid-template-columns: 1fr; /* Single column layout for very small screens */
        gap: 25px;
    }

    .team-member, .board-member {
        padding: 25px;
    }

    .team-member img, .board-member img {
        width: 120px;
        height: 120px;
    }

    .team-member h3, .board-member h3 {
        font-size: 1.6rem;
    }

    .team-member .role, .board-member .role {
        font-size: 1rem;
    }

    .team-member p, .board-member p {
        font-size: 0.95rem;
    }
}
/* Mission Page Specific Styles */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.goal-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #66bb6a;
    text-align: left;
}

.goal-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.goal-item h3 {
    font-size: 1.6rem;
    color: #2e7d32;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.goal-item h3::before {
    content: ''; /* Removed icon */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #ffeb3b;
}

.goal-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.content-section ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.content-section ul li {
    font-size: 1.1rem;
    color: #444;
    line-height: 2;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.content-section ul li strong {
    color: #2e7d32;
    font-weight: 700;
}

.content-section ul li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #4caf50;
}

/* Responsive for Mission Page */
@media (max-width: 768px) {
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .goal-item h3 {
        font-size: 1.4rem;
    }

    .content-section ul li {
        font-size: 1rem;
    }
}
/* Footer Styles */
.site-footer {
    background-color: rgba(46, 125, 50, 0.95); /* Darker green, semi-transparent */
    backdrop-filter: blur(8px);
    color: #e8f5e8;
    padding: 60px 20px 20px;
    margin-top: 80px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-basis: 250px; /* Give logo section a base width */
    flex-shrink: 0;
}

.footer-logo {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.footer-brand .brand-text {
    font-size: 22px;
}

.footer-brand .brand-line-2 {
    font-size: 18px;
}

.footer-links, .footer-contact, .footer-social {
    flex-basis: 200px; /* Distribute space */
    flex-grow: 1;
}

.site-footer h3 {
    color: #ffeb3b; /* Highlight color */
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.site-footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #e8f5e8;
    border-radius: 2px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: 12px;
}

.site-footer ul li a,
.site-footer p {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    line-height: 1.7;
}

.site-footer ul li a:hover {
    color: #ffeb3b;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
}

.social-icons a:hover img {
    transform: translateY(-5px) scale(1.1);
    filter: brightness(1.2) drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 25px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #c8e6c9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-brand {
        flex-basis: auto;
        justify-content: center;
    }
    
    .site-footer h3 {
        text-align: center;
    }

    .site-footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links ul,
    .footer-contact p {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .site-footer {
        padding: 40px 15px 15px;
    }
}

/* Contact Page Specific Styles */
.contact-info-section .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.contact-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 5px solid #4caf50;
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.contact-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 1.8rem;
    color: #2e7d32;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.contact-item a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Contact Form Styles */
.contact-form-section {
    text-align: center;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    color: #444;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #4caf50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
    outline: none;
}

.form-group textarea {
    resize: vertical; /* Allow vertical resizing */
    min-height: 120px;
}

.submit-button {
    margin-top: 20px;
    width: auto;
    padding: 15px 40px;
    font-size: 1.2rem;
    cursor: pointer;
    border: none; /* Override default button border */
    display: inline-block; /* Ensure it respects text-align center */
}

/* Map Section Styles */
.map-section {
    padding: 0; /* Remove padding as iframe will take full width */
    background: transparent; /* No background for map section */
    box-shadow: none; /* No shadow for map section */
    border: none;
    margin: 60px auto;
}

.map-section .section-title {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
    height: 0;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 15px;
}

/* Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-item h3 {
        font-size: 1.6rem;
    }

    .contact-form {
        padding: 20px;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group input, .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .submit-button {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}
/* Impact Stories Page - Timeline Specific Styles */

/* Full-width header at the top */
.impact-stories-header {
    width: 100%;
    max-width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-bottom: 3px solid #4caf50;
}

.impact-stories-header .page-title {
    font-size: 3.5rem;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
}

.impact-stories-header .page-description {
    font-size: 1.3rem;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Main container setup */
.impact-stories-main {
    padding: 0 20px 60px;
    margin-top: 140px;
    position: relative;
    min-height: calc(100vh - 140px);
}

/* Timeline Container for Flex layout */
.timeline-container {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
    align-items: flex-start;
}

/* Main Timeline Content (Center-Left) */
.impact-timeline-doc {
    flex: 1;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* LinkedIn embed notice */
.linkedin-embed-notice {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.linkedin-embed-notice p {
    color: #856404;
    font-size: 0.95rem;
    margin: 0;
}

/* Individual Timeline Post */
.timeline-post {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(76, 175, 80, 0.2);
    scroll-margin-top: 160px; /* Offset for fixed navbar when jumping to anchor */
}

.timeline-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-post .post-header {
    margin-bottom: 20px;
}

.timeline-post .post-date {
    background-color: #e8f5e8;
    color: #2e7d32;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
    border: 1px solid #c8e6c9;
}

.timeline-post h3 {
    font-size: 1.9rem;
    color: #2e7d32;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.timeline-post img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.timeline-post p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.timeline-post .post-footer {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.95rem;
    color: #777;
}

/* Timeline Navigation Sidebar (Right) */
.timeline-navigation {
    position: sticky;
    top: 180px;
    width: 300px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-height: calc(100vh - 220px);
    overflow-y: auto;
}

.timeline-navigation h3 {
    font-size: 1.6rem;
    color: #2e7d32;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #ffeb3b;
}

.timeline-navigation ul {
    list-style: none;
    padding: 0;
}

.timeline-navigation li {
    margin-bottom: 12px;
}

.timeline-navigation a {
    display: block;
    padding: 12px 16px;
    background-color: rgba(76, 175, 80, 0.08);
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid #4caf50;
}

.timeline-navigation a:hover {
    background-color: #4caf50;
    color: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 1024px) {
    .timeline-container {
        flex-direction: column-reverse;
        align-items: center;
    }

    .timeline-navigation {
        position: relative;
        top: auto;
        width: 100%;
        max-width: 700px;
        max-height: none;
        margin-bottom: 30px;
    }

    .impact-timeline-doc {
        width: 100%;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .impact-stories-header {
        padding: 40px 20px;
    }

    .impact-stories-header .page-title {
        font-size: 2.5rem;
    }

    .impact-stories-header .page-description {
        font-size: 1.1rem;
    }

    .impact-timeline-doc {
        padding: 30px 20px;
    }

    .timeline-post h3 {
        font-size: 1.6rem;
    }
}

/* Donate Page Specific Styles */
.donation-overview {
    text-align: center;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #ffeb3b; /* Yellow accent */
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.stat-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.stat-item h3 {
    font-size: 1.6rem;
    color: #2e7d32;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.cta-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4caf50;
    margin-top: 40px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.donation-options {
    text-align: center;
}

.donate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.donate-option {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.donate-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.donate-option h3 {
    font-size: 1.8rem;
    color: #2e7d32;
    margin-bottom: 15px;
    font-weight: 700;
}

.donate-option p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1; /* Allow paragraph to take up space */
}

.amount-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.amount-btn {
    background-color: #e8f5e8;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.amount-btn:hover,
.amount-btn.selected { /* Add .selected class via JS for active state */
    background-color: #4caf50;
    color: #ffffff;
    border-color: #4caf50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.custom-amount-input {
    width: 120px;
    padding: 10px 15px;
    border: 1px solid #a5d6a7;
    border-radius: 20px;
    font-size: 1rem;
    text-align: center;
    color: #444;
}

.donate-now-btn, .subscribe-btn, .contact-partner-btn {
    width: 100%;
    margin-top: auto; /* Push button to the bottom of the flex item */
}

.bank-details p {
    text-align: left;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

.bank-details strong {
    color: #2e7d32;
}

.transparency-section {
    text-align: center;
}

.transparency-seal {
    width: 150px;
    height: auto;
    margin-top: 30px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.15));
}

/* Responsive for Donate Page */
@media (max-width: 768px) {
    .impact-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-item h3 {
        font-size: 1.4rem;
    }

    .donate-grid {
        grid-template-columns: 1fr;
    }

    .donate-option {
        padding: 25px;
    }

    .donate-option h3 {
        font-size: 1.6rem;
    }

    .amount-btn, .custom-amount-input {
        width: calc(50% - 5px); /* Two buttons per line */
    }

    .donate-now-btn, .subscribe-btn, .contact-partner-btn {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
}
/* Donate Now Page Styles */
.payment-choice-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.payment-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.payment-choice-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-choice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    border-color: #4caf50;
}

.payment-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.payment-choice-card h3 {
    font-size: 1.8rem;
    color: #2e7d32;
    margin-bottom: 15px;
    font-weight: 700;
}

.payment-choice-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.region-tag {
    display: inline-block;
    background: #e8f5e8;
    color: #2e7d32;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
}

/* Modal Styles */
.payment-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: #ffffff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    max-width: 700px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #2e7d32;
}

.modal-content h2 {
    color: #2e7d32;
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.modal-description {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Mobile Money Providers */
.mobile-money-providers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.provider-card {
    background: #f9f9f9;
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.provider-card:hover {
    background: #e8f5e8;
    border-color: #4caf50;
    transform: scale(1.05);
}

.provider-card img {
    max-width: 80px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.provider-card h3 {
    font-size: 1.2rem;
    color: #2e7d32;
    margin-bottom: 5px;
}

.provider-card p {
    font-size: 0.9rem;
    color: #666;
}

/* PayPal Options */
.paypal-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.paypal-choice-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f9f9f9;
    padding: 25px;
    border: 2px solid #ddd;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.paypal-choice-btn:hover {
    background: #e8f5e8;
    border-color: #4caf50;
    transform: translateX(5px);
}

.btn-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.paypal-choice-btn h3 {
    font-size: 1.4rem;
    color: #2e7d32;
    margin-bottom: 5px;
}

.paypal-choice-btn p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Payment Instructions */
.payment-instructions {
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    margin-top: 20px;
}

.payment-instructions h3 {
    color: #856404;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.payment-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2e7d32;
    text-align: center;
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    margin: 15px 0;
    letter-spacing: 1px;
}

.instruction-text {
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 10px 0 0 0;
}

/* Responsive */
@media (max-width: 768px) {
    .payment-options-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 10% 20px;
        padding: 30px 20px;
    }

    .mobile-money-providers {
        grid-template-columns: 1fr;
    }

    .paypal-choice-btn {
        flex-direction: column;
        text-align: center;
    }

    .payment-number {
        font-size: 1.4rem;
    }
}