body {
  font-family: Arial, sans-serif;
  margin: 40px;
  color: #333;
  line-height: 1.6;
}

.container {
  display: flex;
  gap: 40px;
}

/* Lewa kolumna */
.left {
  flex: 2;
}

.left h2 {
  color: #1a4d99;
  font-size: 22px;
  margin-bottom: 15px;
}

.left strong {
  font-weight: bold;
}

/* Prawa kolumna */
.right {
  flex: 1;
  border-left: 2px solid #ddd;
  padding-left: 30px;
}

/* Nagłówek eksperta */
.expert-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.expert-header img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.expert-info {
  display: flex;
  flex-direction: column;
}

.expert-info .label {
  font-size: 14px;
  color: #333;
}

.expert-info .name {
  font-size: 16px;
  font-weight: bold;
  color: #004a99;
}

.right p {
  font-size: 14px;
}