 .footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  color: #ffff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.main-footer h3 {
  letter-spacing: 0.5px;
}

.btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 1000; 
  width: 45px;
  height: 45px;
  padding: 0;
  border-radius: 8px;
  background-color: #1a56ad; 
  border: none;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.btn-back-to-top:hover {
  background-color: #15468c;
  transform: translateY(-5px); 
}

.btn-back-to-top i {
  font-size: 1.5rem;
  color: white;
  line-height: 45px;
}

#btn-back-to-top {
  bottom: 20px;
}


.site-footer-bar {
    background-color: #236BB9;
    color: #ffffff;
    font-family: 'Helvetica Neue';
    font-size: 14px;
    padding: 15px 20px;
    width: 100%;
    box-sizing: border-box;
}

.footer-bar-container {
    max-width: 1200px; 
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    height: 30px; 
    width: auto;
    display: block;
}

.footer-copyright {
    margin: 0;
    font-weight: 400;
    opacity: 0.9;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 1;
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-bar-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 10px;
    }
}