body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  background-color: #f6f8f9;
  color: #333;
}

/* Контейнер */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* Шапка сайта */
header {
  text-align: center;
  background-color: #81c784;
  padding: 30px;
  border-radius: 10px;
  color: white;
}

/* Блок профиля */
.profile {
  text-align: center;
  margin-top: 40px;
}

/* Фото нутрициолога */
.profile img {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  object-fit: cover;
  margin-bottom: 20px;
}

/* Контакты */
.contacts {
  margin-top: 30px;
  background: #e8f5e9;
  padding: 20px;
  border-radius: 10px;
}

/* Подвал */
footer {
  text-align: center;
  margin-top: 40px;
  color: #777;
  font-size: 14px;
}