.messages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 20px;
}

.chairman-section {
  flex: 1 1 400px; /* responsive box */
  max-width: 600px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.section-title {
  font-size: 32px;
  color: #900C3F;
  margin-bottom: 20px;
}

.profile-img {
  width: 100%;
  max-width: 245px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 20px;
}

.chairman-text h2 {
  font-size: 24px;
  margin: 10px 0;
}

.chairman-text h6 {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.chairman-text p {
  text-align: justify;
  font-size: 15px;
  line-height: 1.6;
  padding: 0 10px;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .messages {
    flex-direction: column;
    align-items: center;
  }
  
  .section-title {
    font-size: 26px;
  }

  .chairman-text h2 {
    font-size: 20px;
  }

  .chairman-text p {
    font-size: 14px;
    padding: 0;
  }
}
