.management-header {
    background: linear-gradient(135deg, #0b2c4d, #123f6b);
    color: #fff;
    padding: 100px 20px;
}

.management-header h1 {
    font-size: 48px;
    font-weight: 700;
}

.management-header p {
    font-size: 18px;
    opacity: .85;
}

.section-title h2 {
    font-size: 36px;
    color: #0b2c4d;
    margin-bottom: 40px;
}

/* GRID */
.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.management-grid.top {
    max-width: 600px;
    margin: 0 auto;
}

/* CARD */
.management-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .3s ease;
}

.management-card:hover {
    transform: translateY(-6px);
}

.management-card h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7f93;
    margin-bottom: 10px;
}

.management-card h3 {
    font-size: 18px;
    color: #0b2c4d;
    font-weight: 600;
}

/* HIGHLIGHT TOP */
.management-card.highlight {
    border: 2px solid #0b2c4d;
}

/* STAFF */
.staff-box {
    margin-top: 40px;
    background: #0b2c4d;
    color: #fff;
    text-align: center;
    padding: 30px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
}

/* UTIL */
.mt-80 {
    margin-top: 80px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .management-header h1 {
        font-size: 36px;
    }

    .section-title h2 {
        font-size: 28px;
    }
}
