/* Footer Styles */
.site-footer {
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  margin-top: 3rem;
  padding: 2rem 1rem;
  font-size: 0.95rem;
  color: #555;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0b2e6f;
  margin-bottom: 0.75rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #0b2e6f;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.footer-section a:hover,
.footer-section a:focus {
  text-decoration: underline;
  outline: none;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}

.footer-bottom p {
  margin: 0.5rem 0;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .site-footer {
    padding: 1.5rem 1rem;
    margin-top: 2rem;
  }
}
