

.management-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.management-section h1 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 3,5rem;
   text-decoration: underline;
  color: #164677;
}

/* Flex row layout */
.management-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeIn 1s ease;
}

.management-row.reverse {
  flex-direction: row-reverse;
}

.message-box {
  flex: 1;
  min-width: 300px;
  margin-left: 35px;
}

.message-box h2 {
  font-size: 1.8rem;
  color: #34495e;
  margin-bottom: 10px;
}

.designation {
  font-weight: bold;
  color: #888;
  margin-bottom: 15px;
  margin: left 10px; 
}

.message {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #555;
}

.photo-box {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.photo-box img {
  width: 80%;
  margin-top: 20px;
  height: 200px;
  max-width: 200px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  animation: fadeInUp 1s ease;
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 200px) {
  .management-row,
  .management-row.reverse {
    flex-direction: column;
  }

  .photo-box img {
    
    max-width: 40%;
  }

  .management-section h1 {
    font-size: 2rem;
     text-decoration: underline;
  }
}
