.site-footer {
  width: 100%;
  background-color: transparent;
  color: #000;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  display: flex;
  justify-content: flex-end; 
  align-items: flex-end;
  flex-direction: column;
  padding: 8px 32px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  box-shadow: none; 
  border: none;
  cursor: default;
  gap: 6px;
}

.footer-right {
  display: flex;
  flex-direction: column; 
  align-items: flex-end; 
  text-align: right;
  gap: 6px;
}

.social-icons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.social-icons img {
  width: 25px;
  height: 25px;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.social-icons img:hover {
  opacity: 0.7;
}

.footer-text {
  line-height: 1.4;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}
/* Hide footer on home section */
.fp-viewing-home .site-footer {
    display: none;
}
@media (max-width: 768px) {
  .site-footer {
    display: none !important;
  }
}
