/* =============================================================================
   shared.css — styles used on every page
   ============================================================================= */

/* ── Reset ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── Body ── */
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
}

/* ── HEADER ── */
header {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  padding: 0;
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  min-height: 58px;
}

.logo a {
  display: block;
  line-height: 0;
}

.logo img {
  height: 56px;
  width: auto;
  display: block;
}

/* ── FOOTER ── */
footer {
  background: #000;
  margin-top: 100px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

footer p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  margin: 0;
}

@media (max-width: 767px) {
  .footer-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 14px 10px;
    text-align: center;
  }
}
