html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .site-footer {
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: #fff;
    padding: 40px 0 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
  }
  
  .footer-column {
    width: 25%;
    box-sizing: border-box;
    padding: 0 10px;
    margin-bottom: 20px;
    text-align: left;
  }
    
  .footer-logo img {
    height: 80px;
    transition: transform 0.3s ease;
  }
  .footer-logo img:hover {
    transform: scale(1.1);
  }
  
  .footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFD700;
    position: relative;
    margin: 0 0 12px;
  }
  .footer-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #FFD700;
    margin-top: 6px;
    border-radius: 1px;
  }
  
  .footer-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer-contact ul li {
    margin-bottom: 6px;
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .footer-contact ul li strong {
    color: #fff;
    margin-right: 5px;
  }
  
  .footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 6px;
  }
  .footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 4px 0;
  }
  .footer-links ul li a:hover {
    color: #FFD700;
  }
  
  .footer-social .social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 6px;
  }
  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; 
    height: 48px; 
    background: #444;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  .social-icon img {
    width: 60%;
    height: auto;
    display: block;
  }
  .social-icon:hover {
    transform: scale(1.1);
    background-color: #FFD700;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
  }
  
  @media (max-width: 992px) {
    .footer-column {
      width: 50%;
    }
  }
  
  @media (max-width: 576px) {
    .footer-column {
      width: 100%;
    }
  }
  