.footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  font-family: 'Arial', sans-serif;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-column h4 {
  color: #EA0003;
  font-size: 18px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column a {
  color: white;
  display: block;
  margin: 6px 0;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #EA0003;
  text-decoration: underline;
}

/* Optional: Mobile Responsive */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 30px;
  }
}
