/* ====== Footer Styles ====== */
.site-footer {
  background-color: #003973;
  color: white;
  padding: 2rem 1rem 1rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 1rem;
  text-align: left;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 220px;
}

.footer-column h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #ffebcd;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #e1effa;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  text-decoration: underline;
  color: #ffc107;
}

.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: #ccc;
  border-top: 1px solid #1c5e90;
  padding-top: 0.75rem;
}

/* ====== Responsive Design ====== */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 0.5rem;
  }
}
