.footer-bg {
    background-image: url('/images/imod.webp');
    background-size: cover;
    background-position: center;
    font-size: 13px;
  }
  
  /* Footer links */
  .footer-link {
    color: black;
    text-decoration: none;
  }
  .footer-link:hover {
    text-decoration: underline;
  }
  
  /* Bottom links */
  .footer-bottom-link {
    color: #dc3545;
    text-decoration: none;
  }
  .footer-bottom-link:hover {
    text-decoration: underline;
  }
  
  /* Social wrapper */
  .social-wrapper {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }
  
  /* Social icon */
  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-size: 20px;
    color: #000;
    background: #ffffffd5;
    border-radius: 50%;
    text-decoration: none;
    transition: .3s;
  }
  
  .social-icon:hover {
    background: #000;
    color: #fff;
  }
  
  /* Mobile optimization */
  @media (max-width: 480px) {
    .social-wrapper {
      gap: 10px;
    }
    .social-icon {
      width: 34px;
      height: 34px;
      font-size: 17px;
    }
  }
  