/* FOOTER */
.footer {
  background: #000000;
  color: #ffffff;
  padding: 40px 20px 10px;
  border-top: 3px solid #f4c430;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section h3 {
  color: #f4c430;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.footer-section p,
.footer-section ul li a {
  color: #e6e6e6;
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin: 6px 0;
}

.footer-section ul li a {
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #f4c430;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #333;
  margin-top: 20px;
}

.footer-bottom p {
  color: #cccccc;
  font-size: 0.9rem;
}

/* MOBILE FOOTER */
@media (max-width: 768px) {
  .footer-container {
    text-align: center;
    flex-direction: column;
  }
}
