.footer {
  background-color: #131414;
  color: #eee;
  padding: 40px 20px 20px;
  font-family: 'Recursive', sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 250px;
  margin: 10px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 15px;
  font-weight: 700;
  color: #ff6f61;
}

.footer-section p,
.footer-section ul,
.footer-section a {
  font-weight: 400;
  font-size: 0.95rem;
  color: #ccc;
  text-decoration: none;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a:hover {
  color: #ff3b2e;
}

.social-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  color: #ccc;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  color: #ff6f61;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #777;
}

/* Responsywność */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-section {
    margin: 20px 0;
  }
}