
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        overflow-x: hidden;
    }
    
    /* Hero Section - Full Width */
    .projects-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('{% static "images/child.jpg" %}');
        background-size: cover;
        background-position: center;
        padding: 100px 20px;
        text-align: center;
        color: white;
        width: 100%;
    }
    
    .projects-hero h1 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 20px;
    }
    
    .projects-hero p {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
    }
    
    /* Simple Message Section */
    .simple-message {
        background: #f0f9ff;
        padding: 25px 20px;
        text-align: center;
        width: 100%;
    }
    
    .simple-message p {
        font-size: 16px;
        color: #1f2937;
        margin: 0;
        line-height: 1.6;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    /* Projects Container */
    .projects-container {
        padding: 50px 20px;
        background: white;
        width: 100%;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .project-item {
        margin-bottom: 40px;
        padding: 25px;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .project-item:last-child {
        border-bottom: none;
    }
    
    .project-item:hover {
        background: #f9fafb;
    }
    
    /* Flex Layout */
    .project-flex {
        display: flex;
        gap: 30px;
        align-items: flex-start;
    }
    
    /* Image Container */
    .project-image-container {
        flex: 0 0 280px;
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .project-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .image-placeholder {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 14px;
    }
    
    /* Badges */
    .badges-container {
        position: absolute;
        top: 10px;
        left: 10px;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .project-badge {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
    }
    
    .badge-ongoing { background: #10b981; color: white; }
    .badge-completed { background: #3b82f6; color: white; }
    .badge-planning { background: #f59e0b; color: white; }
    .badge-urgent { background: #ef4444; color: white; }
    .badge-featured { background: #f59e0b; color: white; }
    
    /* Content */
    .project-content {
        flex: 1;
    }
    
    .project-title {
        font-size: 26px;
        font-weight: 800;
        color: #1f2937;
        margin-bottom: 12px;
    }
    
    .project-description {
        font-size: 15px;
        color: #4b5563;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    /* Stats */
    .project-stats {
        display: flex;
        gap: 20px;
        margin: 15px 0;
        flex-wrap: wrap;
        padding: 12px 0;
        border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .stat {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        color: #4b5563;
    }
    
    .stat strong {
        color: #1f2937;
    }
    
    .location-text {
        color: #6b7280;
        font-size: 14px;
        margin: 10px 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    /* Buttons */
    .button-group {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }
    
    .btn-learn-more {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 10px 24px;
        border-radius: 30px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s;
        display: inline-block;
        border: none;
        cursor: pointer;
    }
    
    .btn-learn-more:hover {
        transform: translateX(3px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    }
    
    .btn-donate {
        background: #ef4444;
        color: white;
        padding: 10px 24px;
        border-radius: 30px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s;
        display: inline-block;
        border: none;
        cursor: pointer;
    }
    
    .btn-donate:hover {
        background: #dc2626;
        transform: translateX(3px);
        box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
    }
    
    /* Pagination */
    .pagination-container {
        text-align: center;
        margin-top: 50px;
    }
    
    .pagination {
        display: inline-flex;
        gap: 8px;
        list-style: none;
        padding: 0;
        margin: 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination li {
        display: inline-block;
    }
    
    .pagination .page-link {
        background: white;
        color: #667eea;
        padding: 8px 16px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        border: 1px solid #e5e7eb;
        display: inline-block;
    }
    
    .pagination .page-link:hover {
        background: #667eea;
        color: white;
    }
    
    .pagination .active .page-link {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
    }
    
    .pagination .disabled .page-link {
        opacity: 0.5;
        cursor: not-allowed;
    }
    
    .showing-info {
        margin-top: 15px;
        color: #6b7280;
        font-size: 14px;
    }
    
    /* Empty State */
    .empty-state {
        text-align: center;
        padding: 60px 20px;
        background: #f9fafb;
        border-radius: 16px;
    }
    
    .empty-state h3 {
        font-size: 24px;
        color: #1f2937;
        margin-bottom: 10px;
    }
    
    .empty-state p {
        color: #6b7280;
    }
    
    /* Mobile Responsive */
    @media (max-width: 768px) {
        .projects-hero {
            padding: 60px 20px;
        }
        
        .projects-hero h1 {
            font-size: 32px;
        }
        
        .projects-hero p {
            font-size: 16px;
        }
        
        .simple-message p {
            font-size: 14px;
        }
        
        .projects-container {
            padding: 30px 15px;
        }
        
        .project-flex {
            flex-direction: column;
            gap: 20px;
        }
        
        .project-image-container {
            flex: 0 0 auto;
            width: 100%;
        }
        
        .project-image, .image-placeholder {
            height: 220px;
        }
        
        .project-title {
            font-size: 22px;
        }
        
        .project-description {
            font-size: 14px;
        }
        
        .project-item {
            padding: 15px;
            margin-bottom: 25px;
        }
        
        .project-stats {
            gap: 12px;
            font-size: 13px;
        }
        
        .stat {
            font-size: 13px;
        }
        
        .button-group {
            flex-direction: column;
            gap: 12px;
        }
        
        .btn-learn-more, .btn-donate {
            width: 100%;
            text-align: center;
            padding: 12px 20px;
        }
        
        .pagination .page-link {
            padding: 6px 12px;
            font-size: 12px;
        }
        
        .showing-info {
            font-size: 12px;
        }
    }
    
    @media (max-width: 480px) {
        .projects-hero h1 {
            font-size: 28px;
        }
        
        .project-title {
            font-size: 20px;
        }
        
        .project-stats {
            flex-direction: column;
            gap: 8px;
        }
    }