/* footer.css */

/* Container for the site footer */
.site-footer {
    background: #2B6B80;
    color: white;
    text-align: center;
    padding: 2rem 3rem;
    margin-top: 2rem;
    font-family: sans-serif;
    display: flex;
  align-items: center;
  justify-content: space-between;
  }

  .footer-logo img {
  height: 80px;                        /* tweak as needed */
  width: auto;                         /* keep aspect ratio */
  display: block;
}
  /* Links section inside the footer */
  .footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}



/* SVG icon sizing */
.social-link svg { width: 20px; height: 20px; fill: currentColor; }
  

@media (max-width: 600px) {
  .site-footer {
    display: grid;
    justify-content: center;
    gap: 20px;
  }
}
