.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  
  /* Анимация */
  opacity: 0;                              /* Начальная прозрачность */
  transform: translateY(50px);             /* Начальное положение: смещено на 50px вниз */
  animation: fadeUp 0.4s ease forwards;    /* Запуск анимации */
  /* animation: fadeUp 0.4s ease backwards; */
}

/* Определение анимации */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
}

.about-content p {
  text-align: center;
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 1.1em;
}