
/* Global reset polish */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #111827;
  background-color: #ffffff;
}

/* Limit max-width consistency */
.container {
  max-width: 72rem; /* 1152px */
  margin-left: auto;
  margin-right: auto;
}

/* Image placeholders (match screenshots) */
.placeholder {
  background-color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Footer polish */
footer {
  border-top: 1px solid #e5e7eb;
}

/* Buttons consistency */
button {
  transition: all 0.2s ease-in-out;
}

button:hover {
  transform: translateY(-1px);
}

/* Prevent over-wide text blocks */
p {
  max-width: 65ch;
}


.footer {
    background: #f8faf9;
    border-top: 1px solid #e5e7eb;
    margin-top: 6rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;

    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

/* Brand */

.footer-brand {
    max-width: 320px;
}

.footer-brand h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Links */

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-group h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-group a {
    display: block;
    text-decoration: none;
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.footer-group a:hover {
    color: #1f7a3f;
}

/* Bottom */

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    text-align: center;
    padding: 1.25rem 2rem;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Muted text consistency */
.text-muted {
  color: #6b7280;
}

/* Smooth hover polish */
a, button {
  transition: all 0.2s ease-in-out;
}
