/* Ваши существующие стили */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f0f0f0;
}

.container {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  width: 100%;
  box-sizing: border-box;
}

header {
  text-align: center;
  margin-bottom: 20px;
}

.profile-photo {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-top: 20px;
}

section {
  margin-bottom: 20px;
}

h1,
h2 {
  color: #333;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
  /* Добавляет отступ для точек списка */
}

ul ul {
  list-style-type: circle;
  padding-left: 20px;
  /* Добавляет отступ для вложенных точек списка */
}

#contact p {
  margin: 5px 0;
}

form {
  display: flex;
  flex-direction: column;
}

form p {
  margin-bottom: 10px;
}

form input,
form textarea {
  padding: 5px;
  font-size: 1em;
}

/* Новый стиль для обработки длинных слов в отзывах */
.review-content {
  word-wrap: break-word;
  white-space: pre-wrap;
}
