.division-title h1 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
    color: #212529;
}

.division-title p {
    font-size: 1.1rem;
    color: #343a40;
    margin-top: 5px;
    font-family: 'Montserrat', sans-serif;
}

/* Hierarchy Sections */
.top-hierarchy,
.middle-hierarchy,
.lower-hierarchy {
    text-align: center;
}

.top-hierarchy{
    margin-top: -1rem
}

.middle-hierarchy{
    margin-top: 2rem;
}

.lower-hierarchy{
    margin: 2rem 0 4rem 0 ;
}

/* Team Image Container - Match child page sizing */
.team-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px; /* Fixed height to match child page */
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.group:hover .team-img img {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Manager Container */
.manager-container {
    height: 30px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manager-title, .secretary-title,
.executive-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    padding: 20px 0 10px 0;
    font-size: 1.5em;
    margin: 0 0 20px 0;
}

/* Manager Title Colors */
.finance-manager-title {
    color: #d94141;
}

.marketing-manager-title {
    color: #3aae47;
}

.creative-manager-title {
    color: #ff7b00;
}

.hr-manager-title {
    color: #ff5c00;
}

.station-manager-title {
    color: #0073e6;
}