.dept-header {
    background: #2c3e50;
    color: #fff;
    padding: 12px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
}

.dept-header.active {
    background: #1abc9c;
}

.dept-content {
    padding: 15px;
    border: 1px solid #ddd;
}

.year-filter {
    margin-bottom: 15px;
    padding: 6px 10px;
}

.placements-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.placement-item {
    border: 1px solid #eee;
    padding: 10px;
    text-align: center;
}

.placement-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .placements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .placements-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}