        body { 
            background: linear-gradient(135deg, #e8f5e8, #f8f9fa); 
            min-height: 100vh; 
            padding-top: 80px;
        }
        
        .transparency-container { 
            max-width: 1200px; 
            margin: 0 auto; 
            padding: 20px;
        }
        
        .transparency-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .transparency-card:hover {
            transform: translateY(-5px);
        }
        
        .transparency-header {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 30px;
            text-align: center;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .stat-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            border-color: #28a745;
            transform: translateY(-5px);
        }
        
        .stat-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: white;
            font-size: 24px;
        }
        
        .stat-value {
            font-size: 2rem;
            font-weight: bold;
            color: #28a745;
            margin-bottom: 5px;
        }
        
        .stat-label {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .program-card {
            background: white;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
            border: 2px solid #f8f9fa;
            transition: all 0.3s ease;
        }
        
        .program-card:hover {
            border-color: #28a745;
            box-shadow: 0 5px 15px rgba(40,167,69,0.1);
        }
        
        .progress-bar-custom {
            height: 20px;
            border-radius: 10px;
            background-color: #e9ecef;
            overflow: hidden;
            margin: 10px 0;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 10px;
            transition: width 0.8s ease;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding-right: 10px;
            color: white;
            font-size: 12px;
            font-weight: bold;
        }
        
        .donor-list {
            max-height: 400px;
            overflow-y: auto;
        }
        
        .donor-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #f8f9fa;
        }
        
        .donor-item:last-child {
            border-bottom: none;
        }
        
        .donor-info {
            display: flex;
            align-items: center;
        }
        
        .donor-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin-right: 12px;
        }
        
        .donor-amount {
            color: #28a745;
            font-weight: bold;
        }
        
        .filter-tabs {
            display: flex;
            background: #f8f9fa;
            border-radius: 10px;
            padding: 5px;
            margin-bottom: 20px;
        }
        
        .filter-tab {
            flex: 1;
            padding: 10px 20px;
            text-align: center;
            border-radius: 8px;
            background: transparent;
            border: none;
            color: #6c757d;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .filter-tab.active {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
        }
        
        .monthly-chart {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .chart-bar {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .chart-label {
            width: 80px;
            font-size: 12px;
            color: #6c757d;
        }
        
        .chart-progress {
            flex: 1;
            height: 25px;
            background: #f8f9fa;
            border-radius: 12px;
            overflow: hidden;
            margin: 0 10px;
        }
        
        .chart-fill {
            height: 100%;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 12px;
            transition: width 0.8s ease;
        }
        
        .chart-value {
            font-size: 12px;
            color: #28a745;
            font-weight: bold;
            width: 80px;
            text-align: right;
        }
        
        .trust-indicators {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .trust-item {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
        }
        
        .trust-icon {
            color: #28a745;
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        .news-card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            overflow: hidden;
        }
        
        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .news-card .card-img-top {
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .news-card:hover .card-img-top {
            transform: scale(1.05);
        }
        
        .news-card .card-title {
            color: #2c3e50;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 15px;
        }
        
        .news-card .btn-success {
            background: linear-gradient(135deg, #28a745, #20c997);
            border: none;
            border-radius: 20px;
            padding: 8px 20px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .news-card .btn-success:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(40,167,69,0.3);
        }
        
        .btn-outline-success {
            border: 2px solid #28a745;
            color: #28a745;
            border-radius: 25px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-outline-success:hover {
            background: linear-gradient(135deg, #28a745, #20c997);
            border-color: #28a745;
            color: white;
            transform: scale(1.05);
        }