.info-sections {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 60px 0;
  padding: 0 60px;
}

.info-section {
  opacity: 0;
  text-align: center;
  width: 90%;
  padding: 20px;
  transform: translateY(-30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}
.info-section.visible {
  transform: translateY(0);
  opacity: 1;
}
.info-sections .line {
  width: 60%;
  height: 1px;
  background-color: var(--text-color);
  margin: 0 auto 15px; /* Kreska nad tytułem */
}

.info-sections .title {
  font-size: 18px;
  font-family: "Aboreto";
  margin-bottom: 10px;
  font-weight: bold;
  color: var(--primary-color);
}

/* Media query dla dużych ekranów */
@media (min-width: 768px) {
  .info-sections {
    flex-direction: row; /* Układ obok siebie na dużych ekranach */
    justify-content: space-around; /* Równomierne rozmieszczenie */
  }

  .info-section {
    text-align: center; /* Tekst wyrównany do środka */
  }

  .info-sections .line {
    margin: 0 auto 15px; /* Kreska z zachowaniem odstępu */
  }
}
