/* Footer Styles */
.site-footer {
  background-color: #262626;
  padding: 35px 0;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 0 30px;
}

.footer-logo {
  max-width: 124px;
  width: 100%;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-menu {
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer-nav {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin: 0;
}

.footer-nav a {
  font-size: 15px;
  color: #ffffff;
  text-align: center;
  transition: opacity 0.3s ease;
  font-family: "Inter", sans-serif;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-text {
  text-align: center;
}

.footer-text p {
  font-size: 12px;
  line-height: 1.79;
  color: #ffffff;
  max-width: 390px;
  margin: 0;
}

.footer-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-icon-link,
.footer-icon {
  display: block;
  max-height: 30px;
  transition: opacity 0.3s ease;
}

.footer-icon-link:hover {
  opacity: 0.7;
}

.footer-icon-link img,
.footer-icon img {
  height: 100%;
  max-height: 30px;
  width: auto;
  object-fit: contain;
}

.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .footer-container {
    padding: 0 20px;
    gap: 30px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-text p {
    font-size: 11px;
  }
}
