/* footer */
.site-footer {
  background-color: #111;
  color: #ddd;
  padding: 30px 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 250px;
  text-align: left;
}

.footer-section h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-section p,
.footer-section a {
  font-size: 16px;
  color: #bbb;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
  color: #fff;
}

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    text-align: center;
  }
}
