/* Footer CSS */
.footer {
  background-color: #111111; /* Black background */
  color: #FFFFFF; /* White text */
  padding: 40px 20px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  color: #F7931E; /* Orange headings */
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}

.footer-section p, 
.footer-section li {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a {
  color: #fff; /* Blue links */
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #7AC143; /* Green hover */
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #FFFFFF;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  font-weight: bold;
  transition: all 0.3s;
}

.social-icons a.orange { background-color: #F7931E; }
.social-icons a.blue   { background-color: #2E6DA4; }
.social-icons a.green  { background-color: #7AC143; }

.social-icons a:hover {
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  border-top: 1px solid #333333;
  padding-top: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-section {
    width: 100%;
    flex: unset;
  }
  
  .social-icons a {
    margin-right: 8px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.footer-logo img {
  width: 150px;
  margin-bottom: 20px;
}