/* FULL CSS STYLE EXTRACTED FROM THE HTML FILE */

        /* Linear Theme 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;
            background: #f9f9f9;
        }

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

        /* Header */
        .header {
            background: #fff;
            border-bottom: 3px solid #e8e8e8;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 300;
            color: #333;
            text-decoration: none;
        }

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

        .nav a {
            text-decoration: none;
            color: #666;
            font-weight: 300;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }

        .nav a:hover {
            color: #333;
        }

        /* Hero Banner */
        .hero {
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><rect width="1000" height="600" fill="%23444"/><text x="500" y="300" text-anchor="middle" fill="%23666" font-size="20" font-family="serif">USAID Knowledge Preservation</text></svg>');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 300;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .hero p {
            font-size: 1.2rem;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            border: 2px solid white;
            color: white;
            text-decoration: none;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background: white;
            color: #333;
        }



        /* Stats Section */
        .stats {
            background: #f5f5f5;
            padding: 60px 0;
            border-top: 1px solid #e8e8e8;
            border-bottom: 1px solid #e8e8e8;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 300;
            color: #333;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #666;
            font-weight: 300;
        }

        /* About Section */
        .about {
            background: white;
            padding: 80px 0;
        }

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

        .about h2 {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 30px;
            color: #333;
        }

        .about p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666;
            font-weight: 300;
            margin-bottom: 20px;
        }

        /* Activities Section */
        .activities {
            background: #f9f9f9;
            padding: 80px 0;
            border-top: 1px solid #e8e8e8;
        }

        .activities h2 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 50px;
            color: #333;
        }

        .activities-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .activity-item {
            background: white;
            padding: 30px;
            border: 1px solid #e8e8e8;
            text-align: center;
        }

        .activity-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: block;
        }

        .activity-item h3 {
            font-size: 1.2rem;
            font-weight: 300;
            margin-bottom: 15px;
            color: #333;
        }

        .activity-item p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #666;
            font-weight: 300;
        }

        /* Footer */
        .footer {
            background: #333;
            color: white;
            padding: 60px 0 40px;
            text-align: center;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 1.1rem;
            font-weight: 300;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-section p,
        .footer-section a {
            font-size: 0.9rem;
            color: #ccc;
            font-weight: 300;
            line-height: 1.6;
            text-decoration: none;
        }

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

        .footer-bottom {
            border-top: 1px solid #555;
            padding-top: 20px;
            font-size: 0.85rem;
            color: #999;
            font-weight: 300;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            .nav {
                gap: 1rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .activities-list {
                grid-template-columns: 1fr;
            }

            .about h2,
            .activities h2 {
                font-size: 2rem;
            }
        }

        /* Placeholder Images */
        .placeholder-img {
            background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
    
