        /* style.css */
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden; /* Prevent horizontal scrolling */
        }
        
        /* Ensure content fits within viewport */
        .programs, .hero, .featured-story, .impact-stats, .get-help-section, footer {
            max-width: 100vw;
            overflow-x: hidden;
        }

        /* Color Variables */
        :root {
            --primary-blue: #1e3a8a;
            --forest-green: #065f46;
            --warm-white: #fefefe;
            --sunshine-yellow: #f59e0b;
            --light-gray: #f3f4f6;
        }
        
        /* Forest Green Theme Override */
        :root {
            --theme-color: var(--forest-green);
        }

        /* Background with static image */
        body {
            background: linear-gradient(rgba(6, 95, 70, 0.8), rgba(6, 95, 70, 0.8)), url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?ixlib=rb-4.0.3') center/cover fixed;
        }
        
        /* Navigation */
        .navbar {
            background: rgba(254, 254, 254, 0.7);
            padding: 1rem 5%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--forest-green);
            backdrop-filter: blur(10px);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--forest-green);
        }

        .logo-img {
            height: 50px;
            max-width: 200px;
            margin-right: 10px;
        }
        
        .logo-text {
            display: flex;
            align-items: center;
            height: 50px;
            line-height: 50px;
        }
        
        /* Mobile optimizations for logo area */
        @media (max-width: 768px) {
            .logo {
                font-size: 0.9rem; /* Further reduced font size for mobile */
                flex: 1; /* Allow logo area to take available space */
            }
            
            .logo-img {
                height: 35px; /* Smaller logo on mobile */
                max-width: 120px;
            }
            
            .logo-text {
                height: 35px;
                line-height: 35px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                min-width: 0; /* Allow flex item to shrink below content size */
            }
            
            .nav-container {
                flex-wrap: nowrap; /* Prevent items from wrapping to new line */
            }
            
            .donate-btn {
                font-size: 0.85rem; /* Smaller font for button */
                padding: 0.4rem 1rem; /* Adjust padding */
                white-space: nowrap; /* Prevent text wrapping */
            }
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
        }
        
        .nav-icon {
            width: 24px;
            height: 24px;
            margin-bottom: 5px;
            background: transparent;
            border: 2px solid var(--forest-green);
            border-radius: 8px;
            padding: 2px;
        }
        
        .nav-text {
            font-size: 0.8rem;
            opacity: 0;
            visibility: hidden;
            position: absolute;
            left: 100%;
            top: 0;
            background: var(--warm-white);
            color: var(--forest-green);
            padding: 5px 10px;
            border: 2px solid var(--forest-green);
            border-radius: 6px;
            white-space: nowrap;
            margin-left: 10px;
            transition: all 0.3s ease;
            z-index: 1000;
            transform: translateX(-10px);
        }
        
        .nav-links a {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            padding: 6px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--forest-green);
            background: rgba(254, 254, 254, 0.2);
        }
        
        .nav-links a:hover .nav-text {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }
        
        /* Desktop view: show text as tooltips */
        @media (min-width: 769px) {
            .nav-text {
                opacity: 0;
                visibility: hidden;
                position: absolute;
                left: 100%;
                top: 0;
                background: var(--warm-white);
                color: var(--forest-green);
                padding: 5px 10px;
                border: 2px solid var(--forest-green);
                border-radius: 6px;
                white-space: nowrap;
                margin-left: 10px;
                transition: all 0.3s ease;
                z-index: 1000;
                transform: translateX(-10px);
            }
            
            .nav-links a:hover .nav-text {
                opacity: 1;
                visibility: visible;
                transform: translateX(0);
            }
        }
        
        /* Mobile view: show text permanently next to icons */
        @media (max-width: 768px) {
            .nav-links .nav-text {
                opacity: 1 !important;
                visibility: visible !important;
                position: static;
                background: rgba(254, 254, 240, 0.7); /* Light background */
                color: var(--forest-green);
                padding: 6px 12px;
                border: 2px solid var(--forest-green); /* Match the icon boundary color */
                border-radius: 20px; /* Rounded boundary */
                margin: 0;
                transform: none;
                white-space: nowrap; /* Keep text on one line to fit properly */
                font-weight: 500;
                display: inline-block; /* Auto-fit to text width */
            }
        }
        
        /* Hamburger Menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 4px;
            background: transparent;
            border: none;
            z-index: 1001;
        }
        
        .bar {
            width: 25px;
            height: 3px;
            background-color: #333;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }
        
        /* Hamburger menu animation */
        .menu-toggle.active .bar:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        
        .menu-toggle.active .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
        
        /* Mobile menu enhancements */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }
            
            .donate-btn {
                display: block;
                margin: 1rem auto;
                width: 80%;
                text-align: center;
            }
        }
        
        .donate-btn {
            background: linear-gradient(135deg, var(--forest-green), #087f5b);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s;
            box-shadow: 0 4px 15px rgba(6, 95, 70, 0.4);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .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: 0.5s;
            z-index: -1;
        }
        
        .donate-btn:hover::before {
            left: 100%;
        }

        .donate-btn:hover {
            background: linear-gradient(135deg, #054d3a, var(--forest-green));
            box-shadow: 0 6px 20px rgba(6, 95, 70, 0.6);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            background: transparent;
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 60px;
        }
        
        .hero-content {
            backdrop-filter: blur(10px);
            background: rgba(30, 58, 138, 0.2);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .dual-audience-cta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        
        .audience-card {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            min-width: 250px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: transform 0.3s ease;
        }
        
        .audience-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.3);
        }
        
        .audience-card h3 {
            color: white;
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }
        
        .audience-card p {
            color: white;
            margin-bottom: 1rem;
        }
        
        .audience-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }
        
        .dual-purpose {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }
        
        .purpose-card {
            flex: 1;
            min-width: 300px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .purpose-card h3 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .purpose-card p {
            color: white;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: transform 0.3s, background 0.3s;
            position: relative;
            overflow: hidden;
            z-index: 1;
            display: inline-block;
        }
        
        .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: 0.5s;
            z-index: -1;
        }
        
        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--forest-green), #087f5b);
            color: white;
            box-shadow: 0 4px 15px rgba(6, 95, 70, 0.4);
        }

        .btn-primary:hover {
            box-shadow: 0 6px 20px rgba(6, 95, 70, 0.6);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }
        
        .volunteer-btn {
            background: linear-gradient(135deg, var(--sunshine-yellow), #e69008);
            color: white;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
        }
        
        .volunteer-btn:hover {
            box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
            transform: translateY(-2px);
        }
        
        .donate-btn-cta {
            background: transparent;
            color: white;
            border: 2px solid white;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
        }
        
        .donate-btn-cta:hover {
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        /* Impact Stats */
        .impact-stats {
            background: transparent;
            padding: 4rem 2rem;
            text-align: center;
        }
        
        .stats-container {
            backdrop-filter: blur(10px);
            background: rgba(30, 58, 138, 0.2);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            justify-content: space-around;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .stat-item {
            flex: 1;
            min-width: 250px;
            text-align: center;
        }
        
        .stat-visual {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }
        
        .stat-image {
            width: 200px;
            height: 200px;
            object-fit: contain;
            filter: none; /* Remove filter that was inverting colors */
            background: transparent; /* Ensure transparent background */
        }

        .stat-label {
            color: white;
            font-size: 1.1rem;
            font-weight: bold;
        }

        /* Programs Section */
        .programs {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            background: transparent;
        }
        
        .programs-grid {
            backdrop-filter: blur(10px);
            background: rgba(30, 58, 138, 0.2);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            font-size: 2.2rem;
            font-weight: bold;
        }

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

        .program-card {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .program-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.4);
        }

        .program-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .program-card h3 {
            color: var(--forest-green);
            margin-bottom: 1rem;
        }
        
        .learn-more {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            margin-top: 1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .learn-more::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: 0.5s;
            z-index: -1;
        }
        
        .learn-more:hover::before {
            left: 100%;
        }
        
        .learn-more:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(30, 58, 138, 0.3);
        }

        /* Featured Story */
        .featured-story {
            background: transparent;
            color: white;
            padding: 5rem 2rem;
        }

        .story-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            backdrop-filter: blur(10px);
            background: rgba(30, 58, 138, 0.2);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .story-content h2 {
            margin-bottom: 1rem;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            font-size: 1.8rem;
            font-weight: bold;
        }

        .story-image {
            background: #ddd;
            height: 300px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            backdrop-filter: blur(10px);
            background: rgba(30, 58, 138, 0.2);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Get Help Section */
        .get-help-section {
            background: transparent;
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }
        
        .get-help-section .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .get-help-section h2 {
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 2rem;
        }
        
        .get-help-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .help-card {
            backdrop-filter: blur(10px);
            background: rgba(30, 58, 138, 0.2);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .help-card:hover {
            transform: translateY(-5px);
            background: rgba(30, 58, 138, 0.3);
        }
        
        .help-card h3 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .help-card p {
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .contact-help {
            backdrop-filter: blur(10px);
            background: rgba(30, 58, 138, 0.2);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 2rem;
        }
        
        .contact-help p {
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        /* CTA Banner */
        .cta-banner {
            background: transparent;
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }
        
        .cta-banner h2 {
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }
        
        .cta-banner .cta-buttons {
            backdrop-filter: blur(10px);
            background: rgba(30, 58, 138, 0.2);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: inline-block;
        }

        /* Footer */
        footer {
            background: var(--forest-green);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }
        
        .footer-section {
            backdrop-filter: blur(10px);
            background: rgba(30, 58, 138, 0.2);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: var(--sunshine-yellow);
        }

        .newsletter input {
            padding: 0.5rem;
            width: 100%;
            margin-bottom: 1rem;
            border: none;
            border-radius: 4px;
            backdrop-filter: blur(5px);
            background: rgba(255, 255, 255, 0.7);
        }
        
        .newsletter-btn {
            background: linear-gradient(135deg, var(--sunshine-yellow), #e69008);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            width: 100%;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .newsletter-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: 0.5s;
            z-index: -1;
        }
        
        .newsletter-btn:hover::before {
            left: 100%;
        }
        
        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
        }
        
        .back-to-home-btn {
            display: inline-block;
            text-decoration: none;
            color: white;
            background: linear-gradient(135deg, var(--sunshine-yellow), #e69008);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .back-to-home-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: 0.5s;
            z-index: -1;
        }
        
        .back-to-home-btn:hover::before {
            left: 100%;
        }
        
        .back-to-home-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            color: white;
            text-decoration: none;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: rgba(254, 254, 254, 0.9);
                width: 100%;
                text-align: left; /* Changed to left for better alignment */
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.05);
                padding: 0; /* Reduced padding to control individually */
                max-height: calc(100vh - 70px); /* Limit height to viewport minus navbar height */
                overflow-y: auto; /* Make it scrollable */
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                padding: 0;
                margin: 0;
            }
            
            .nav-links a {
                display: flex;
                flex-direction: row; /* Display icon and text side by side */
                align-items: center;
                justify-content: flex-start; /* Align items to the left */
                font-size: 1.1rem;
                padding: 1.2rem 2rem; /* Increased padding for better touch targets */
                text-decoration: none;
                color: #333;
                transition: background-color 0.3s;
                gap: 15px; /* Space between icon and text */
                border-bottom: 1px solid rgba(254, 254, 240, 0.5); /* Add separator */
            }
            
            .nav-links a:last-child {
                border-bottom: none; /* Remove separator from last item */
            }
            
            .nav-links a:hover {
                background: rgba(254, 254, 240, 0.7); /* Lighter hover effect */
                border-radius: 0; /* Remove border radius for full-width effect */
            }
            
            .nav-icon {
                width: 28px;
                height: 28px;
                flex-shrink: 0; /* Prevent icon from shrinking */
            }
            
            .nav-text {
                font-size: 1.1rem; /* Slightly larger font for mobile */
                margin: 0;
                display: inline-block; /* Changed to inline-block to fit text width */
                color: #333;
                text-align: left; /* Left align text */
                flex: 1; /* Allow text to take available space */
            }
            
            .donate-btn {
                display: block;
                margin: 1.5rem auto;
                width: 85%;
                text-align: center;
                padding: 1rem;
                border-radius: 30px; /* More rounded for mobile */
            }

            .hero h1 {
                font-size: 1.8rem;
                line-height: 1.3;
            }
            
            .hero p {
                font-size: 1rem;
                line-height: 1.5;
            }

            .hero {
                padding: 1rem;
                margin-top: 60px;
                min-height: auto; /* Allow to fit content */
            }
            
            .hero-content {
                padding: 1.5rem;
                margin: 1rem;
                width: 100%; /* Ensure it fits within viewport */
                word-wrap: break-word; /* Break long words */
            }

            .story-container {
                grid-template-columns: 1fr;
                padding: 1rem;
                width: 100%; /* Ensure container fits in viewport */
                word-wrap: break-word; /* Break long words */
            }
            
            .stats-container {
                flex-direction: column;
                padding: 1rem;
                width: 100%; /* Ensure container fits in viewport */
            }
            
            .stat-item {
                min-width: auto;
                margin-bottom: 1.5rem;
                word-wrap: break-word; /* Break long words */
            }
            
            .stat-visual {
                height: 150px;
            }
            
            .stat-image {
                width: 150px;
                height: 150px;
            }
            
            .programs-grid {
                grid-template-columns: 1fr; /* Single column on mobile */
                padding: 1rem;
                gap: 1.5rem;
                width: 100%; /* Ensure grid fits in viewport */
                word-wrap: break-word; /* Break long words */
            }
            
            .program-card {
                padding: 1.5rem;
                word-wrap: break-word; /* Break long words */
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
                width: 100%; /* Ensure button container fits */
            }
            
            .dual-cta {
                display: flex;
                flex-direction: column;
                width: 100%;
                align-items: center;
                gap: 1rem;
            }
            
            .dual-cta a {
                margin: 0.5rem 0 !important;
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
            
            .dual-purpose {
                flex-direction: column;
                gap: 1.5rem;
                width: 100%; /* Ensure container fits */
                word-wrap: break-word; /* Break long words */
            }
            
            .purpose-card {
                min-width: auto;
                padding: 1.5rem;
                word-wrap: break-word; /* Break long words */
            }
            
            .get-help-options {
                grid-template-columns: 1fr;
                width: 100%; /* Ensure container fits */
            }
            
            .help-card {
                padding: 1.5rem;
                word-wrap: break-word; /* Break long words */
            }
            
            .contact-help {
                padding: 1.5rem;
                word-wrap: break-word; /* Break long words */
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                width: 100%; /* Ensure footer fits in viewport */
                word-wrap: break-word; /* Break long words */
            }
            
            .footer-section {
                padding: 1.5rem;
                word-wrap: break-word; /* Break long words */
            }
            
            /* Prevent horizontal scrolling */
            * {
                max-width: 100%;
                overflow-wrap: break-word;
                word-wrap: break-word;
            }
        }
        
        /* Additional mobile responsiveness adjustments */
        @media (max-width: 768px) {
            .hero {
                padding: 1rem;
                margin-top: 60px;
            }
            
            .hero-content {
                padding: 1.5rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .programs-grid {
                grid-template-columns: 1fr;
                padding: 1.5rem;
            }
            
            .program-card {
                padding: 1.5rem;
            }
            
            .featured-story {
                padding: 2rem 1rem;
            }
            
            .story-container {
                padding: 1.5rem;
            }
            
            .get-help-options {
                grid-template-columns: 1fr;
            }
            
            .help-card {
                padding: 1.5rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .footer-section {
                padding: 1rem;
            }
        }
        
        /* Extra small devices (phones, 600px and down) */
        @media (max-width: 600px) {
            .navbar {
                padding: 0.8rem 5%;
            }
            
            .hero h1 {
                font-size: 1.6rem;
                line-height: 1.3;
            }
            
            .hero p {
                font-size: 1rem;
                line-height: 1.6;
            }
            
            .section-title {
                font-size: 1.6rem;
                line-height: 1.3;
            }
            
            .btn, .donate-btn {
                padding: 0.7rem 1.2rem;
                font-size: 0.9rem;
                width: 100%;
                max-width: 250px;
            }
            
            .programs {
                padding: 2.5rem 1rem;
            }
            
            /* Improve text readability on small screens */
            p {
                font-size: 0.95rem;
                line-height: 1.7;
            }
            
            .program-card p, .story-content p, .purpose-card p, .help-card p, .team-bio {
                font-size: 0.9rem;
                line-height: 1.6;
            }
            
            h3 {
                font-size: 1.2rem;
            }
            
            .stat-label {
                font-size: 1rem;
            }
            
            .team-grid {
                grid-template-columns: 1fr; /* Single column on small screens */
                gap: 1.5rem;
            }
            
            .team-card {
                padding: 1.2rem;
            }
            
            .story-content {
                padding: 1rem;
            }
            
            .story-image {
                height: 200px;
            }
        }
        
        /* Tablet responsiveness */
        @media (min-width: 769px) and (max-width: 1024px) {
            .programs-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .dual-purpose {
                flex-direction: column;
            }
            
            .stats-container {
                flex-direction: row;
                justify-content: space-around;
            }
        }
        
        /* Additional mobile navbar optimization */
        @media (max-width: 768px) {
            .nav-container {
                justify-content: flex-start; /* Align items to the start (left) */
                padding: 0 1rem;
                gap: 0.5rem;
            }
            
            .logo {
                margin-right: auto; /* Push other elements to the right */
                flex: 0 0 auto; /* Don't allow logo to shrink */
            }
            
            .donate-btn {
                font-size: 0.8rem; /* Keep original font size */
                padding: 0.25rem 0.5rem; /* Reduce horizontal padding to decrease width */
                margin-left: 0.5rem;
                flex: 0 0 auto; /* Don't allow button to shrink */
                min-height: 28px; /* Adjust minimum height */
                min-width: 60px; /* Reduce minimum width */
                width: auto; /* Allow width to adjust based on content */
            }
            
            .menu-toggle {
                margin-right: 0.5rem;
                order: -1; /* Move hamburger menu to the left */
                flex: 0 0 auto; /* Don't allow toggle to shrink */
            }
        }