.footer {
  background-color: #000; /* Example dark background like untold.com */
  color: #fff;
  padding: 40px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-brand-title {
  font-weight: 950;
  font-size: 18px;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.footer-brand-tagline {
  font-size: 14px;
  opacity: 0.85;
  max-width: 420px;
}

.footer-contact {
  margin-top: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.footer-icon {
  margin-right: 8px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background-color: transparent; /* Remove the semi-transparent background */
  transition: background-color 0.3s;
}

.footer-social-link:hover {
  background-color: rgba(255, 255, 255, 0.1); /* Optional: Add a subtle hover background for interaction */
}

.footer-social-link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0; /* Prevents scaling issues */
}

.footer-section-title {
  font-weight: 900;
  margin-bottom: 10px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-list a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links-list a:hover {
  color: #ccc;
}

.footer-separator {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 20px 0;
}

.footer-copyright {
  font-size: 14px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
}