.hierarchy-display-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.category-group {
    width: 100%;
    margin-bottom: 40px;
}

.category-group h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}

.category-people {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.person {
    border: 1px solid #ddd;
    padding: 10px;
    max-width: 200px;
    text-align: center;
    background-color: #fafafa;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.person img {
    width: 100%;
    height: auto;
}

.person p {
    margin: 5px 0;
    color: #555;
}

.person strong {
    font-size: 1.1em;
    color: #222;
}

.person:hover {
    transform: scale(1.05); /* Diğer kişilere hover efekti */
}

.president {
    width: 100%;
}

.president .person {
    margin: auto;
}