html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100vw;
}

/* Prevent horizontal scrolling globally */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 320px;
    max-width: 100vw;
    overflow-x: hidden;
    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(30, 95, 47, 0.1);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
    border-radius: 4px;
}

.logo img {
    width: 50px;
    height: 50px;
}

.logo h1 {
    color: #1e5f2f;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #4a5568;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle:hover {
    background: rgba(30, 95, 47, 0.1);
    color: #1e5f2f;
    transform: scale(1.05);
}

.mobile-menu-toggle:focus {
    outline: 2px solid #1e5f2f;
    outline-offset: 2px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 999;
    width: 100%;
    border-radius: 0 0 16px 16px;
    border: 1px solid rgba(30, 95, 47, 0.1);
    border-top: none;
    overflow: hidden;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu ul {
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(30, 95, 47, 0.08);
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    display: block;
    padding: 1rem 2rem;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mobile-menu a:hover {
    background: linear-gradient(90deg, rgba(30, 95, 47, 0.05), rgba(126, 211, 33, 0.05));
    color: #1e5f2f;
    padding-left: 2.5rem;
}

.mobile-menu a:focus {
    outline: 2px solid #1e5f2f;
    outline-offset: -2px;
}

.mobile-donate-btn {
    display: block;
    margin: 1rem 2rem;
    background: linear-gradient(135deg, #1e5f2f 0%, #7ed321 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(30, 95, 47, 0.3);
}

.mobile-donate-btn:hover {
    background: linear-gradient(135deg, #164a2a 0%, #6bb71a 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(30, 95, 47, 0.4);
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1e5f2f, #7ed321);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: #1e5f2f;
    transform: translateY(-1px);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:focus {
    outline: 2px solid #1e5f2f;
    outline-offset: 4px;
    border-radius: 4px;
}

.donate-btn {
    background: linear-gradient(135deg, #1e5f2f 0%, #7ed321 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(30, 95, 47, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.donate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.donate-btn:hover {
    background: linear-gradient(135deg, #164a2a 0%, #6bb71a 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 95, 47, 0.4);
}

.donate-btn:hover::before {
    left: 100%;
}

.donate-btn:focus {
    outline: 2px solid #1e5f2f;
    outline-offset: 2px;
}

/* Main Content */
main {
    margin-top: 80px;
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    overflow: hidden;
}

.video-container #heroVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    max-width: 100vw;
    max-height: 250vh;
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
    background: #000;
    object-fit: cover;
}

/* Ensure video never exceeds viewport */
@media (min-aspect-ratio: 16/9) {
    .video-container #heroVideo {
        width: 100vw;
        height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    .video-container #heroVideo {
        width: 177.77vh;
        height: 100vh;
    }
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border: none;
    pointer-events: none;
    object-fit: cover;
}

/* Hide all YouTube UI elements completely */
.video-container iframe::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: 10;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    background: linear-gradient(135deg, rgba(15, 46, 26, 0.15) 0%, rgba(30, 95, 47, 0.1) 50%, rgba(45, 122, 61, 0.05) 100%);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 100vw;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-content h1 {
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8), 0 2px 6px rgba(0, 0, 0, 0.6);
    position: relative;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    position: relative;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    background: white;
    color: #1e5f2f;
    padding: 18px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.4);
    color: #1e5f2f;
}

/* Video Control Button */
.video-control {
    position: absolute;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: calc(100vw - 60px);
    max-height: calc(100vh - 60px);
}

.video-control:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.video-control:focus {
    outline: 2px solid #1e5f2f;
    outline-offset: 2px;
}

.video-control svg {
    width: 24px;
    height: 24px;
    color: #1e5f2f;
    transition: all 0.3s ease;
}

.video-control:hover svg {
    color: #164a2a;
}

/* Mobile-only hero CTA button */
.hero-cta.mobile-only {
    display: none;
}

/* Impact Section */
.impact {
    padding: 6rem 0;
    background: #f8f9fa;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    color: #1e5f2f;
    margin-bottom: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1e5f2f, #7ed321);
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #7ed321 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Image Gallery Section */
.image-gallery {
    padding: 0;
    background: #000;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

.gallery-slides {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.gallery-indicator.active {
    background: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.gallery-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.gallery-title {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    max-width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gallery-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.gallery-title p {
    font-size: 1.1rem;
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
    font-weight: 400;
}

.gallery-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
    transition: width 0.1s linear;
}

.gallery-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #1e5f2f, #7ed321);
    width: 0%;
    transition: width 0.1s linear;
}

/* Partners Section */
.partners {
    padding: 6rem 0;
    background: white;
    width: 100%;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    max-width: 250px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    margin-bottom: 1rem;
}

.partner-logo h4 {
    color: #1e5f2f;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

/* Mission Section */
.mission {
    padding: 6rem 0;
    background: white;
    margin-top: 2rem;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.regions {
    background: #f1f8ff;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.regions h3 {
    color: #1e5f2f;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.regions p {
    font-size: 1.1rem;
    color: #666;
}

/* Board Section */
.board {
    padding: 6rem 0;
    background: #f8f9fa;
    width: 100%;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.board-member {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.board-member-image {
    margin-bottom: 1.5rem;
}

.board-member-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #1e5f2f;
    box-shadow: 0 4px 15px rgba(30, 95, 47, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.board-member-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(30, 95, 47, 0.3);
}

.board-member h3 {
    color: #1e5f2f;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.facebook-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1877f2;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem;
    border-radius: 50%;
    background: rgba(24, 119, 242, 0.1);
    width: 32px;
    height: 32px;
}

.facebook-link:hover {
    color: white;
    background: #1877f2;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.facebook-link:focus {
    outline: 2px solid #1877f2;
    outline-offset: 2px;
}

.facebook-link svg {
    width: 20px;
    height: 20px;
}

.board-member p {
    color: #666;
    line-height: 1.6;
}

/* Leadership Group Styles */
.leadership-group {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #1e5f2f 0%, #2d7a3d 100%);
    border-radius: 16px;
    text-align: center;
    color: white;
}

.group-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: white;
}

.group-images {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.group-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.group-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.group-member img:hover {
    transform: scale(1.1);
}

.group-member span {
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
}

.group-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Footer */
footer {
    background: #1e5f2f;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #7ed321;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #4a6b4f;
    padding-top: 2rem;
    color: #999;
}

/* Page Navigation */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Donations Page Styles */
.donations-page {
    padding: 2rem 0;
}

.bank-details {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.bank-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.bank-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.bank-card h3 {
    color: #1e5f2f;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.bank-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.bank-detail strong {
    color: #333;
}

.bank-detail span {
    color: #666;
    font-family: monospace;
}

.bank-title {
    text-align: center;
    color: #1e5f2f;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-info {
    background: #f1f8ff;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

.contact-info h4 {
    color: #1e5f2f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.contact-info p {
    color: #666;
    margin-bottom: 1rem;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) and (min-width: 769px) {
    .involvement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .donate-btn {
        display: none;
    }
    
    .hero {
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .video-control {
        width: 50px;
        height: 50px;
        bottom: 100px;
        right: 20px;
        max-width: calc(100vw - 40px);
        max-height: calc(100vh - 40px);
    }
    
    .video-control svg {
        width: 20px;
        height: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .board-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-group {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }
    
    .group-images {
        gap: 2rem;
    }
    
    .group-member img {
        width: 100px;
        height: 100px;
    }
    
    .group-title {
        font-size: 1.5rem;
    }
    
    .group-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }
    
    /* Show mobile-only hero CTA button on mobile */
    .hero-cta.mobile-only {
        display: inline-block;
        margin-top: 1rem;
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .involvement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-container {
        height: 50vh;
        min-height: 400px;
    }
    
    .gallery-title h2 {
        font-size: 2rem;
    }
    
    .gallery-title p {
        font-size: 1rem;
    }
    
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .video-control {
        width: 45px;
        height: 45px;
        bottom: 100px;
        right: 15px;
        max-width: calc(100vw - 30px);
        max-height: calc(100vh - 30px);
    }
    
    .video-control svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Programs Section */
.programs {
    padding: 6rem 0;
    background: #f8f9fa;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.program-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.program-card h3 {
    color: #1e5f2f;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.program-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.program-highlights {
    list-style: none;
    padding: 0;
    text-align: left;
}

.program-highlights li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.program-highlights li::before {
    content: '✓';
    color: #7ed321;
    font-weight: bold;
    position: absolute;
    left: 0;
}


.btn-secondary {
    background: transparent;
    color: #1e5f2f;
    border: 2px solid #1e5f2f;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #1e5f2f;
    color: white;
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #1e5f2f 0%, #7ed321 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(30, 95, 47, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #164a2a 0%, #6bb71a 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 95, 47, 0.4);
}

/* Get Involved Section */
.get-involved {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.involvement-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.involvement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.involvement-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.involvement-card h3 {
    color: #1e5f2f;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.involvement-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}


/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero-cta.mobile-only {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        margin-top: 1.5rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .program-card {
        padding: 2rem;
    }
    
    .involvement-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-container {
        height: 40vh;
        min-height: 300px;
    }
    
    .gallery-title {
        top: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .gallery-title h2 {
        font-size: 1.5rem;
    }
    
    .gallery-title p {
        font-size: 0.9rem;
    }
    
    .gallery-indicators {
        bottom: 1rem;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }
    
    .gallery-indicator {
        width: 10px;
        height: 10px;
    }
    
}
