/* Stopka - pasująca do slideshow i menu */
.footer {
  background-color: #1a1a1a; /* Ciemny, elegancki kolor */
  color: #fff;
  padding: 40px 0 20px;
  margin-top: 50px; /* Odstęp od głównej treści */
  font-family: Arial, sans-serif; /* Pasuje do reszty strony */
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin: 20px 0;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 15px;
  color: #fff;
}

.footer-section p {
  line-height: 1.5;
  font-size: 14px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #fff;
}

.img-logo-footer {
  width: 50px;
  height: auto;
  margin-bottom: 10px;
}

.logo-text {
  margin: 0 0 10px 0;
  font-size: 24px;
  font-weight: bold;
}

.social ul li i {
  margin-right: 10px;
  font-size: 18px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  margin-top: 20px;
  color: #ccc;
  font-size: 12px;
}

/* Responsywność dla mobile */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-section {
    min-width: auto;
    margin: 15px 0;
  }
}