body.about {
  font-family: 'Montserrat', sans-serif;
  background: #f2f4f8;
  margin: 0;
  padding: 40px 15px;
  color: #2c3e50;
}


/* Заголовок сторінки */
.page-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
}


/* Картки */
.card {
  background: white;
  max-width: 1000px;
  margin: 30px auto;
  padding: 35px;

  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;

  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  transition: 0.3s;
}

.card:hover {
  transform: translateY(-4px);
}


/* Ліва колонка */
.card-text {
  flex: 1;
}

.card-text h2 {
  margin-top: 0;
}


/* Посилання */
.link {
  display: inline-block;
  margin: 8px 0 14px;
  color: #1a73e8;
  font-weight: 600;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}


/* Фото справа */
.card img {
  width: 280px;
  border-radius: 12px;
  object-fit: cover;
}


/* Адаптивність */
@media (max-width: 768px) {
  .card {
    flex-direction: column;
    text-align: center;
  }

  .card img {
    width: 100%;
  }
}
  p {
  margin-bottom: 16px;   /* відступ між абзацами */
  line-height: 1.6;      /* висота рядка для читабельності */
  margin: 0 0 24px 0;    /* відступ тільки знизу */

}

