.footer {
  background: var(--text-dark);
  color: #fff;
  padding: 48px 0 24px;
  margin-top: 80px;
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-brand-text {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .footer {
    padding: 28px 0 20px;
    margin-top: 48px;
  }

  .footer-brand {
    margin-bottom: 20px;
  }

  .footer-brand-link {
    justify-content: center;
  }

  .footer-brand-text {
    font-size: 18px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }

  .footer-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 14px;
  }

  .footer-section h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-section ul li {
    margin-bottom: 10px;
  }

  .footer-bottom {
    padding-top: 16px;
  }

  .footer-bottom p {
    margin-bottom: 6px;
  }
}
