.site-footer {
    background-color: #35966b;
    padding: 2rem;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .footer-logo img {
    height: 60px;
    width: auto;
  }
  
  .footer-info p {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
  }
  
  .footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #a3f7bf;
  }
  