/* Container for the Unit Heads and Staff section */
.unit-heads-block {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
}

/* Styling individual profiles */
.unit-heads-block .profile {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Profile images */
.unit-heads-block .profile img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
}

/* Headings for each profile */
.unit-heads-block .profile h3 {
    font-size: 1.2em;
    margin-top: 10px;
}

/* Text content under each profile */
.unit-heads-block .profile p {
    font-size: 1em;
    color: #555;
}

/* Responsive design for tablets */
@media (max-width: 1024px) {
    .unit-heads-block {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive design for mobile devices */
@media (max-width: 768px) {
    .unit-heads-block {
        grid-template-columns: 1fr;
    }
}
