/* ===== Footer ===== */
.site-footer {
  background: none;
  background-color: transparent;
  color: #ccc;
  padding: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  font-family: 'Arial', sans-serif;
  text-align: left;
  position: relative;
}

.site-footer::before {
  display: none;
}

.site-footer * {
  position: static;
  z-index: auto;
}

/* Footer container remains the same */
.footer-container {
 
  width: 100%;
  max-width: none;
  margin: 0;
  box-shadow: none;
  text-align: left;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  border-radius: 0 0 14px 14px;
  padding: 12px 16px 10px 110px;
  font-size: 0.88rem;
  position: relative;
  display: block;
}

.footer-left {
  padding-top: 0;
}

.footer-right {
  position: static;
  top: auto;
  right: auto;
  left: auto;
  width: auto;
  text-align: left;
  padding: 0;
}

.footer-right address,
.footer-right small {
  margin: 0 0 0.15rem;
  font-size: 0.82rem;
  line-height: 1.2;
  color: #2b6cb0;
}

/* Footer left and right content styles remain unchanged */
.footer-left strong {
  display: block;
  font-size: 1.2rem;
  color: #e6c2c2;
  margin-bottom: 0.5rem;
}

.logo-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 50px;
  background: url('../../Kenya.jpg') left top/cover no-repeat;
  border-radius: 0 0 5px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.footer-left address,
.footer-left small {
  font-style: normal;
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.4;
  margin-top: 0;
  padding-top: 0;
}

.footer-right small {
  display: block;
  margin-bottom: 0.25rem;
  color: #ccc;
}

.sns {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.sns li a {
  color: #ccc;
  text-decoration: none;
  font-size: 2.5rem;
  transition: color 0.3s ease;
}

.sns li a:hover {
  color: #2e2c2d;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .footer-container {
    display: block;
    width: 100%;
    padding: 12px 14px 10px 110px;
  }

  .footer-right {
    display: block;
    position: static;
    width: 100%;
    max-width: 100%;
    margin: 8px 0 0;
    text-align: left;
    padding: 0;
  }

  .footer-right address,
  .footer-right small {
    display: block;
    width: 100%;
    word-break: break-word;
  }

  .sns {
    justify-content: center;
    margin-top: 1rem;
  }
}
