/* Footer Base Styles */
.site-footers {
    background: #ffffff;
  }
  
  /* Footer Link Styles */
  .footer-links .footer-link,
  .footer-bottom-link {
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    color: #64748b;
    padding: 0.25rem 0 0;
  }
  
  /* Footer Underline Animation */
  .footer-links .footer-link::after,
  .footer-bottom-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #16a249 0%, #2ad672 100%);
    transition: width 0.3s ease;
  }
  
  .footer-links .footer-link:hover::after,
  .footer-bottom-link:hover::after {
    width: 100%;
  }
  
  .footer-links .footer-link:hover,
  .footer-bottom-link:hover {
    color: #16a249;
  }
  
  /* Social icons */
  .footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #e2e8f0;
    transition: all 0.3s ease;
  }
  
  .footer-social-link img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
  }
  
  .footer-social-link:hover {
    background: #16a249;
    transform: translateY(-2px);
  }
  
  .footer-social-link:hover img {
    opacity: 1;
    filter: brightness(0) invert(1);
  }
  
  /* Divider */
  .footer-divider {
    border-color: #ffffff;
    margin: 2rem 0;
    opacity: 0.6;
  }
  
  /* Hover effects for certification text */
  .site-footers .text-grey span:has(.invert-to-black):hover {
    color: #16a249;
    cursor: pointer;
  }
  
  .site-footers .text-grey span:has(.invert-to-black):hover .invert-to-black {
    filter: brightness(0) saturate(100%) invert(33%) sepia(91%) saturate(2923%) hue-rotate(96deg) brightness(93%) contrast(91%);
  }