    .department-header {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        color: #fff;
        padding: 60px 30px;
        border-radius: 20px;
        text-align: center;
        margin-bottom: 40px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        position: relative;
        overflow: hidden;
    }

    .department-header::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
        animation: pulse 15s infinite;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 0.5; }
        50% { transform: scale(1.5); opacity: 0.8; }
    }

    .department-header h1 {
        font-size: 2.8rem;
        font-weight: bold;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        position: relative;
        z-index: 1;
    }

    .department-header .icon {
        font-size: 4rem;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
        animation: sparkle 3s ease-in-out infinite;
    }

    @keyframes sparkle {
        0%, 100% { transform: scale(1) rotate(0deg); filter: brightness(1); }
        50% { transform: scale(1.1) rotate(180deg); filter: brightness(1.3); }
    }

    .department-header p {
        font-size: 1.15rem;
        opacity: 0.95;
        position: relative;
        z-index: 1;
        font-weight: 500;
    }

    .department-description {
        background: white;
        padding: 35px;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        margin-bottom: 40px;
        border-left: 5px solid #f093fb;
    }

    .department-description h2 {
        color: #f093fb;
        font-size: 1.8rem;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .department-description p {
        color: #555;
        line-height: 1.9;
        font-size: 1.05rem;
    }

    .special-badge {
        display: inline-block;
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        color: white;
        padding: 10px 25px;
        border-radius: 25px;
        font-size: 0.95rem;
        margin-bottom: 15px;
        font-weight: 600;
        animation: glow 2s ease-in-out infinite;
        box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
    }

    @keyframes glow {
        0%, 100% { 
            box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4); 
            transform: scale(1);
        }
        50% { 
            box-shadow: 0 6px 25px rgba(240, 147, 251, 0.6); 
            transform: scale(1.02);
        }
    }

    .program-type-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
        color: #8b4513;
        padding: 8px 20px;
        border-radius: 20px;
        font-size: 0.9rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .program-highlight {
        background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
        border-left: 4px solid #f5576c;
        padding: 20px;
        border-radius: 10px;
        margin: 20px 0;
    }

    .program-highlight h3 {
        color: #f5576c;
        margin-bottom: 10px;
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .program-highlight p {
        color: #666;
        line-height: 1.6;
    }

    .post-card {
        position: relative;
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        margin-bottom: 30px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .post-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(180deg, #f093fb 0%, #f5576c 100%);
    }

    .post-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
        border-color: #f093fb;
    }

    .featured-ribbon {
        position: absolute;
        top: 20px;
        right: -35px;
        background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
        color: #8b4513;
        padding: 8px 50px;
        transform: rotate(45deg);
        font-weight: bold;
        font-size: 0.85rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        z-index: 10;
    }

    .categories-filter {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        margin-bottom: 30px;
        justify-content: center;
    }

    .category-btn {
        padding: 12px 25px;
        border-radius: 25px;
        border: 2px solid #f093fb;
        background: white;
        color: #f093fb;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .category-btn:hover, .category-btn.active {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
    }

    .impact-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }

    .impact-card {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        color: white;
        padding: 25px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
    }

    .impact-card i {
        font-size: 2.5rem;
        margin-bottom: 15px;
        opacity: 0.9;
    }

    .impact-card .number {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .impact-card .label {
        font-size: 0.95rem;
        opacity: 0.9;
    }

