
h1 {
  text-align: center;
  color: #0d47a1;
  margin-bottom: 40px;
}

.message-section {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.profile-image {
  flex: 0 0 200px;
  max-width: 200px;
  height: 240px;
  border-radius: 10%;
  object-fit: cover;
  border: 5px solid #2196f3;
}

.message-content {
  flex: 1;
}

.title {
  color: #1565c0;
  font-size: 24px;
  margin-bottom: 10px;
  border-left: 5px solid #1976d2;
  padding-left: 10px;
}

.message {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  color: #333;
}

.signature {
  margin-top: 15px;
  font-weight: bold;
  color: #0d47a1;
}

@media (max-width: 768px) {
  .message-section {
    flex-direction: column;
    align-items: center;
    text-align: justify;
  }

  .message-content {
    margin-top: 20px;
  }

  .message {
    text-align: justify;
  }
}
