
/* ==== Footer ==== */
.site-footer {
  background: #4a8593;      /* teal blue */
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-nav a {
  color: #fff;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 500;
}

.footer-nav a:hover {
  text-decoration: underline;
}

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

.footer-company a {
  color: #fff;
  text-decoration: underline;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: #e5e7eb;
  line-height: 1.5;
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
}

/* ==== Mobile ==== */
@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 0.75rem;
  }
}

