    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

          nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            padding: 1rem 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-placeholder {
            width: 80px;
            height: 80px;
            border: 3px dashed #1e40af;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1e40af;
            font-size: 0.7rem;
            text-align: center;
            padding: 5px;
            background: #eff6ff;
        }

        .nav-brand h1 {
            color: #1e40af;
            font-size: 1.5rem;
        }

        .nav-brand p {
            color: #2563eb;
            font-size: 0.75rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: #2563eb;
        }

        .btn-donate {
            background: #fbbf24;
            color: #1e40af;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: background 0.3s;
        }

        .btn-donate:hover {
            background: #f59e0b;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .hero {
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
            color: white;
            padding: 140px 2rem 80px;
            margin-top: 10px;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-badge {
            display: inline-block;
            background: #fbbf24;
            color: #1e40af;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: #bfdbfe;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            border: none;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: #fbbf24;
            color: #1e40af;
        }

        .btn-primary:hover {
            background: #f59e0b;
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline:hover {
            background: white;
            color: #1e40af;
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .image-placeholder {
            width: 80%;
            height: 70%;
            border: 3px dashed #fbbf24;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            color: #fbbf24;
            font-size: 1rem;
            text-align: center;
            padding: 2rem;
        }

        .about {
            padding: 80px 2rem;
            background: #f9fafb;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #1e40af;
            margin-bottom: 1rem;
        }

        .title-underline {
            width: 100px;
            height: 4px;
            background: #fbbf24;
            margin: 0 auto 1.5rem;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .about-box {
            background: #1e40af;
            color: white;
            padding: 2rem;
            border-radius: 20px;
        }

        .about-box h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .mission-vision {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mission-box, .vision-box {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .mission-box {
            border-left: 4px solid #2563eb;
        }

        .vision-box {
            border-left: 4px solid #fbbf24;
        }

        .mission-box h4, .vision-box h4 {
            color: #1e40af;
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .logo-meaning {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .logo-meaning h3 {
            text-align: center;
            color: #1e40af;
            font-size: 2rem;
            margin-bottom: 2rem;
        }

        .logo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
        }

        .logo-item {
            text-align: center;
        }

        .logo-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .icon-blue {
            background: #dbeafe;
            color: #2563eb;
        }

        .icon-yellow {
            background: #fef3c7;
            color: #f59e0b;
        }

        .logo-item h5 {
            color: #1e40af;
            margin-bottom: 0.5rem;
        }

        .logo-item p {
            color: #6b7280;
            font-size: 0.875rem;
        }

        .programs {
            padding: 80px 2rem;
            background: white;
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .program-card {
            padding: 2rem;
            border-radius: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .program-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .card-blue {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
        }

        .card-yellow {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
        }

        .card-green {
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
        }

        .card-purple {
            background: linear-gradient(135deg, #e9d5ff 0%, #d8b4fe 100%);
        }

        .program-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .program-card h3 {
            color: #1e40af;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .gallery {
            padding: 50px 2rem;
            background: #f9fafb;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .gallery-item {
            border-radius: 15px;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            color: #2563eb;
            font-size: 1.2rem;
            text-align: center;
            padding: 1rem;
            transition: transform 0.3s;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .impact {
            padding: 80px 2rem;
            background: #1e40af;
            color: white;
        }

        .impact-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .stat-box {
            background: #1e3a8a;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            color: #fbbf24;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #bfdbfe;
            font-size: 1.1rem;
        }

        .cta-box {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            color: #1e40af;
        }

        .cta-box h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .contact {
            padding: 80px 2rem;
            background: #f9fafb;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-info, .contact-form {
            background: white;
            padding: 1rem;
            border-radius: 20px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .contact-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            background: #dbeafe;
            color: #2563eb;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-item h4 {
            color: #1e40af;
            margin-bottom: 0.25rem;
        }

        .contact-item p {
            color: #6b7280;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: #374151;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 1rem;
        }

        .form-group textarea {
            resize: vertical;
        }

        footer {
            background: #1e40af;
            color: white;
            padding: 3rem 2rem;
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #bfdbfe;
            text-decoration: none;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #1e3a8a;
            color: #bfdbfe;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }

            .nav-menu.active {
                display: flex;
            }

            .menu-toggle {
                display: block;
            }

            .hero-container,
            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .logo-placeholder {
                width: 60px;
                height: 60px;
                font-size: 0.6rem;
            }
        }
