#site-footer {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
    background-color: #ececec;
  }
  
  .footer-top {
    background-color: #e7e7e7;
    padding: 40px 0 30px;
    border-bottom: 1px solid #ddd;
  }
  
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-widgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
  }
  
  .footer-widget {
    padding: 10px;
  }
  
  .footer-widget-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #222;
  }
  
  .footer-bottom {
    background-color: #cecece;
    padding: 5px 0;
  }
  
  .footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-logo img {
    max-height: 80px;
    width: auto;
  }
  
  .footer-copy {
    flex: 1;
    text-align: center;
    font-size: 13px;
    color: #555;
  }
  
  .footer-social .social-menu-icons {
    display: flex;
    gap: 12px;
    padding: 0;
    margin: 0;
  }
  
  .footer-social .social-menu-icons li {
    list-style: none;
  }
  
  .footer-social .social-menu-icons li a {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  .footer-social .social-menu-icons li a:hover {
    transform: scale(1.1);
  }
  
  /* Responsive Footer */
  @media (max-width: 767px) {
    /*Temporarily disabled .footer-bottom-inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
    } */
  
    .footer-logo {
      order: 1;
    }
  
    .footer-social {
      order: 2;
    }
  
    .footer-copy {
      order: 3;
      margin-top: 5px;
    }

    /* Temporarily changed */
        .footer-bottom-inner {
          flex-direction: row;
          align-items: center;
          text-align: center;
          gap: 10px;
        }
      
  }
  