.management {
    padding: 60px 0;
    min-height: 100vh;
    width: 100%;
    text-align: center;
    margin-top: 3%;
}

.management h1 {
    font-size: 4rem;
    font-weight: 1000;
    text-align: center; /* Center the heading */
}

.line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    margin: 10px;
}

.profile img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: url('../Images/management/bgimage4.jpg') center center / cover no-repeat;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    position: relative;
    padding-top: 20px;
}

.profile img::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url('../Images/management/bgimage4.jpg') center center / cover no-repeat;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.profile h3{
	font-weight: bolder;
	margin-top: 15px;
	margin-bottom: 0;
}
.profile h3, .profile em {
	font-size: 1rem;
    text-align: center;
}

h2{
    font-size: 1.7rem;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .line {
        flex-direction: column;
        align-items: center;
    }

    .profile {
        width: 100%;
    }

    .management h1 {
        font-size: 2rem;
        margin-top: 30px;
    }
    h2{
        font-size: 1.4rem;
    }
}
