/* Shared footer styles for all pages */
.site-footer {
  background: #2c5282;
  color: #fff;
  width: 100%;
  margin-top: 4rem;
}
.site-footer .footer-container.three-col {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  gap: 2rem;
}
.site-footer .footer-column {
  flex: 1 1 0;
  min-width: 180px;
}
.site-footer .footer-column.left {
  text-align: left;
}
.site-footer .footer-column.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-footer .footer-column.right {
  text-align: right;
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-links li {
  margin-bottom: 0.5rem;
  list-style: none;
}
.site-footer .footer-links a {
  color: #fff !important;
  text-decoration: underline;
  font-size: 1rem;
}
.site-footer .footer-links a:hover {
  opacity: 0.8;
}
.site-footer iframe {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.site-footer .footer-heading {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.site-footer p {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
}
@media (max-width: 900px) {
  .site-footer .footer-container.three-col {
    flex-direction: column !important;
    align-items: stretch;
    gap: 1.5rem;
  }
  .site-footer .footer-column.left,
  .site-footer .footer-column.center,
  .site-footer .footer-column.right {
    text-align: left;
  }
  .site-footer .footer-column.center {
    justify-content: flex-start;
  }
  .site-footer .footer-column.right {
    margin-top: 1rem;
  }
} 