/* Footer Styles */
.site-footer {
    background-color: #2a4b8d;
    color: #ffffff;
    padding: 60px 0 20px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-logo {
    margin-bottom: 20px;
  }
  
  .footer-logo img {
    max-width: 100px;
    margin-bottom: 15px;
  }
  
  .footer-links h3, .footer-contact h3, .hours h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-links h3:after, .footer-contact h3:after, .hours h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #e67e22;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #e67e22;
  }
  
  .footer-contact p {
    margin-bottom: 10px;
  }
  
  .footer-contact a {
    color: #ffffff;
  }
  
  .social-links {
    display: flex;
    margin-top: 20px;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    margin-right: 10px;
    transition: background-color 0.3s ease;
  }
  
  .social-link:hover {
    background-color: #e67e22;
    color: #ffffff;
  }
  
  .copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
  }
  
  /* Responsive styles */
  @media (min-width: 768px) {
    .footer-content {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 992px) {
    .footer-content {
      grid-template-columns: 2fr 1fr 2fr;
    }
  }


  @media (max-width: 768px) {
    .site-logo {
        max-width: 75px;
    }

    .footer-logo {
        max-width: 50px;
    }
      
    .header-content {
        padding: 6px 15px;
    }
  }