footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: auto;
}

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

.footer-section h3 {
  border-bottom: 2px solid #ffcc00;
  padding-bottom: 10px;
}

.footer-section p, .footer-section ul {
  margin: 10px 0;
}

.footer-section a {
  color: #ffcc00;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #444;
  padding-top: 10px;
}