.vouchermate-footer-base-container {
  font-family: "Google Sans", system-ui, -apple-system, sans-serif;
  background-color: #faf9f5;
  padding: 60px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

.vouchermate-footer-center-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.vouchermate-footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: opacity 0.2s ease;
}

.vouchermate-footer-brand-link:hover {
  opacity: 0.9;
}

.vouchermate-footer-brand-icon {
  max-height: 32px;
  width: auto;
  object-fit: contain;
}

.vouchermate-footer-brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #18181b;
  letter-spacing: -0.4px;
}

.vouchermate-footer-intro-paragraph {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #52525b;
  max-width: 680px;
  margin: 0 0 28px 0;
}

.vouchermate-footer-links-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.vouchermate-footer-link-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vouchermate-footer-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.vouchermate-footer-nav-anchor {
  color: #18181b;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.vouchermate-footer-nav-anchor:hover {
  color: #c1121f;
}

.vouchermate-footer-nav-divider {
  width: 1px;
  height: 14px;
  background-color: rgba(0, 0, 0, 0.12);
}

.vouchermate-footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.vouchermate-footer-trust-pill {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #52525b;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
}

.vouchermate-footer-trust-pill i {
  color: #c1121f;
  font-size: 0.85rem;
}

.vouchermate-footer-bottom-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}

.vouchermate-footer-disclosure-panel {
  margin-bottom: 20px;
  max-width: 720px;
}

.vouchermate-footer-disclosure-copy {
  font-size: 0.825rem;
  color: #71717a;
  line-height: 1.6;
  margin: 0;
}

.vouchermate-footer-disclosure-copy strong {
  color: #18181b;
  font-weight: 700;
}

.vouchermate-footer-copyright-label {
  font-size: 0.8rem;
  color: #a1a1aa;
}

@media (max-width: 768px) {
  .vouchermate-footer-links-nav {
    flex-direction: column;
    gap: 16px;
  }
  .vouchermate-footer-nav-divider {
    display: none;
  }
  .vouchermate-footer-link-section {
    flex-direction: column;
    gap: 8px;
  }
}