.program-banner {
            background: linear-gradient(135deg, #003d7a 0%, #0066cc 100%);
            color: white;
            padding: 60px 0;
            margin-bottom: 40px;
        }
        
        .program-tabs {
            background: white;
            border-radius: 8px 8px 0 0;
            overflow: hidden;
            margin-bottom: 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .program-tabs .nav-tabs {
            border-bottom: none;
            padding: 0;
            margin: 0;
        }
        
        .program-tabs .nav-link {
            background: #e9ecef;
            color: #333;
            border: none;
            border-radius: 0;
            padding: 15px 30px;
            margin: 0;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .program-tabs .nav-link:hover {
            background: #dee2e6;
        }
        
        .program-tabs .nav-link.active {
            background: #003d7a;
            color: white;
        }
        
        .tab-content-area {
            background: white;
            padding: 40px;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            min-height: 400px;
        }
        
        .report-button {
            display: inline-block;
            background: #28a745;
            color: white;
            padding: 12px 30px;
            border-radius: 6px;
            text-decoration: none;
            margin: 8px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .report-button:hover {
            background: #218838;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .photo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .photo-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        
        .photo-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        
        .photo-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .no-content {
            text-align: center;
            padding: 60px 20px;
            color: #999;
        }
        
        @media (max-width: 768px) {
            .program-tabs .nav-link {
                font-size: 13px;
                padding: 12px 15px;
            }
            
            .tab-content-area {
                padding: 20px;
            }
            
            .photo-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
