.info-section {
  --dark-color: #333333;
  --accent-color: var(--dark-color);
  --bg-section: #fafafa;
  --text-color: #333;
  padding: 4rem 1rem;
  background-color: var(--bg-section);
  font-family: 'Open Sans', sans-serif;
  color: var(--text-color);
}

.info-section > * {
  max-width: 1000px;
  margin: 0 auto 3rem;
  animation: fadeInUp 0.6s ease both;
}

/* Fade-in animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Tytuły podsekcji */
.info-section .section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 1px;
}

/* Opisy */
.info-section .section-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: center;
}

/* Pełnoekranowe obrazki */
.info-section .img-container {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.info-section .img-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.info-section .img-container img:hover {
  transform: scale(1.05);
}

/* FAQ – animacja elementów wewnątrz */
.info-section .faq > * {
  animation: fadeInUp 0.6s ease both;
}

/* Pytania */
.info-section .faq h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  border-left: 4px solid var(--accent-color);
}

/* Odpowiedzi */
.info-section .faq p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Listy w FAQ */
.info-section .faq ul {
  list-style: disc inside;
  margin: 1rem 0 1.5rem 0;
  padding-left: 1rem;
}
.info-section .faq ul li {
  margin-bottom: 0.5rem;
}

/* UWAGA! wyróżnienie końcowe */
.info-section .faq h5:last-of-type {
  font-size: 2rem;
  letter-spacing: 0.5px;
}

/* Responsywność */
@media (max-width: 768px) {
  .info-section {
    padding: 2rem 1rem;
  }
  .info-section > * {
    margin-bottom: 2rem;
  }
  .info-section .section-title {
    font-size: 2rem;
  }
  .info-section .faq h5 {
    font-size: 1.25rem;
  }
}
