

/* ===== PAGE STYLE ===== */
body{
  font-family: Inter, sans-serif;
  margin:0;
  background:#f9fafb;
}

/* ===== SECTION ===== */
.management{
  padding:80px 20px;
  max-width:1100px;
  margin:auto;
}

.mgmt-title{
  text-align:center;
  font-size:2.5rem;
  font-weight:800;
  margin-bottom:80px;
}

/* ===== ROW LAYOUT ===== */
.mgmt-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  margin-bottom:90px; /* SPACE FOR FUTURE */
}

/* Alternate direction */
.mgmt-row.reverse{
  flex-direction:row-reverse;
}

/* ===== IMAGE ===== */
.mgmt-img img{
  width:220px;
  height:220px;
  border-radius:50%;
  object-fit:cover;
  border:6px solid #2563eb;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
  transition:0.3s;
}

.mgmt-img img:hover{
  transform:scale(1.05);
}

/* ===== INFO ===== */
.mgmt-info{
  max-width:520px;
}

.mgmt-info h3{
  font-size:1.6rem;
  margin-bottom:12px;
}

.mgmt-info p{
  color:#555;
  line-height:1.6;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

  .mgmt-row,
  .mgmt-row.reverse{
    flex-direction:column;
    text-align:center;
  }

  .mgmt-img img{
    width:180px;
    height:180px;
  }

}
