/* Footer Styles */
.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 0 1rem;
  margin-top: 3rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-info {
  flex: 1;
  max-width: 350px;
  margin-right: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-text {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.3s;
}

.social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.social-icon {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.social-icon.facebook {
  background-image: url('../img/social/facebook.svg');
}

.social-icon.twitter {
  background-image: url('../img/social/twitter.svg');
}

.social-icon.instagram {
  background-image: url('../img/social/instagram.svg');
}

.social-icon.linkedin {
  background-image: url('../img/social/linkedin.svg');
}

.footer-links-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 2rem;
}

.footer-column-title {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-item {
  margin-bottom: 0.8rem;
}

.footer-link {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #bdc3c7;
}

.footer-bottom .disclaimer {
  text-align: left;
}
.footer-bottom .disclaimer a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom .disclaimer a:hover {
  color: #ffffff;
}

/* Responsive styles */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }
  
  .footer-info {
    max-width: 100%;
    margin-right: 0;
  }
  
  .footer-links-column {
    width: 100%;
  }
}
