body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f400;
    text-align: center;
    margin: 20px;
}
.container {
    max-width: 900px;
    margin: auto;
    background: rgba(16, 20, 255, 0);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
h4 {
    color: #0a6cff;
}
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}
.staff-card {
    background: #588dff79;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(38, 0, 255, 0.26);
    color: rgb(255, 255, 255);
    text-align: center;
}
.staff-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.staff-card strong {
    display: block;
    font-size: 1.2em;
}