.footer {
    background-color: #111;
    color: #fff;
    padding: 30px 0 10px;
    text-align: center;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 20px;
  }
  
  .footer-logo h2 {
    color: #ff7200;
  }

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    font-style: italic;
}
  
.footer-links a,
.footer-links a {
    display: inline-flex;
    align-items: center;
    margin: 5px 10px;
    font-size: 18px; /* 👈 increased from 14px */
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease-in-out;
  }
.footer-social a {
    display: inline-flex;
    align-items: center;
    margin: 5px 10px;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease-in-out;
  }

.footer-social a img {
  width: 60px;
  height: 60px;
  margin-right: 8px;
}
  
.footer-links a:hover,
.footer-social a:hover {
    color: #ff7200;
  }
  
.footer-bottom {
    font-size: 13px;
    color: #aaa;
}

.footer {
  margin-top: auto; /* Optional, ensures it stays down */
}

.logo-img {
    width: 70px;  /* or adjust as needed */
    height: auto;  /* keeps aspect ratio */
    margin-bottom: 4px;
  }