/* ── NAV ── */
.site-nav { background-color: #e36172ff; }
.site-nav .inner {
  max-width: 1170px; margin: 0 auto; padding: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.site-nav .logo img { width: 200px; height: auto; display: block; }
.nav-menu { list-style: none; margin: 0; padding: 0; display: flex; }
.nav-menu li a {
  color: #fff; text-decoration: none;
  font-family: 'Nunito', sans-serif; font-size: 18px;
  padding: 15px 16px; display: block; transition: all .3s ease;
}
.nav-menu li a:hover { color: #000; background: #fff; }

/* ── CERT LOGOS ── */
.logos-section { background-color: #F7F0E6; padding: 10px 0; }
.logos-section .inner {
  max-width: 1170px; margin: 0 auto; padding: 0 20px;
  display: flex; justify-content: center;
}
.logos-row { width: 80%; display: flex; justify-content: center; align-items: center; }
.logo-item { flex: 1; text-align: center; padding: 10px 5px; }
.logo-item img { width: 200px; height: auto; max-width: 200px; }

/* ── FOOTER ── */
.site-footer { background-color: #e36172ff; padding: 20px 0; }
.site-footer .inner {
  max-width: 1170px; margin: 0 auto; padding: 0 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-social { display: flex; gap: 12px; align-items: center; }
.footer-social img { width: 24px; height: 24px; display: block; }
.footer-copy {
  flex: 1; text-align: center;
  font-family: 'Nunito', sans-serif; font-size: 14px; color: #fff;
  padding: 10px 0;
}
.footer-copy a { color: #fff; text-decoration: none; }
.footer-copy a:hover { text-decoration: underline; }
.footer-links {
  flex: 0 0 40.3%; text-align: center;
  font-family: 'Nunito', sans-serif; font-size: 18px; padding: 10px 0;
}
.footer-links a { color: #ff7f59; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

/* ── RESPONSIVE NAV + FOOTER ── */
@media (max-width: 768px) {
  .site-nav .inner { flex-direction: column; gap: 10px; }
  .nav-menu { flex-wrap: wrap; justify-content: center; }
  .nav-menu li a { font-size: 15px; padding: 10px 12px; }
  .logos-row { width: 100%; flex-wrap: wrap; }
  .site-footer .inner { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .footer-social, .footer-copy, .footer-links { flex: 0 0 100%; text-align: center; }
}
