.message-section {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.person-msg {
  width: 50%;
  padding: 30px 10px;
  box-shadow: 0 0 5px 0.3px rgba(0, 0, 0, 0.479);
  border-radius: 12px;
}
.person-msg h4 {
  text-align: center;
  font-weight: bold;
  font-size: 40px;
}
.person-msg p {
  margin-top: 5px;
  color: #000;
  font-size: 18px;
  text-align: justify;
  font-family: poppins, sans-serif;
}
.person-img {
  width: 18%;
  height: 400px;
  background: url("../assets/person.png") no-repeat center center;
  background-size: contain;
  border-radius: 12px;
  box-shadow: 0 0 5px 0.3px rgba(0, 0, 0, 0.48);
  background-position: center;
}

.person-img img {
  width: 400px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.person-img img:hover {
  transform: scale(1.03);
  border-bottom: 5px solid grey;
}

@media (max-width: 720px) {
  .message-section {
    flex-direction: column;
    align-items: center;
  }

  .person-msg {
    width: 95%;
  }

  .person-img {
    width: 95%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain; /* fixed */
    background-repeat: no-repeat;
    background-position: center;
  }
}
