*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1e3a5f;
  --red: #b03020;
  --cream: #f7f3ec;
  --warm: #ede8df;
  --white: #ffffff;
  --text: #2a2a2a;
  --muted: #666;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  font-size: 1.05rem;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.narrow {
  max-width: 680px;
}

/* HEADER */
header {
  background: var(--navy);
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.logo {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: bold;
  letter-spacing: 0.01em;
}

nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  transition: color 0.2s;
}

nav a:hover { color: var(--white); }

/* HERO */
.hero {
  background: var(--cream);
  border-bottom: 3px solid var(--navy);
  padding: 3.5rem 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 1.9rem;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 1.1rem;
}

.hero-text p {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.hero-img {
  flex: 0 0 220px;
}

.hero-img img {
  width: 100%;
  border: 4px solid var(--navy);
  display: block;
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.6rem;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: bold;
  transition: background 0.2s;
}

.btn:hover { background: #152e4d; }

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-white:hover { background: var(--cream); }

/* SECTIONS */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--warm);
  border-top: 1px solid #d8d0c4;
  border-bottom: 1px solid #d8d0c4;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 0;
}

.section-dark h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.section-dark p {
  font-family: Arial, sans-serif;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* TYPOGRAPHY */
h2 {
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

p {
  margin-bottom: 1.2rem;
  color: var(--text);
}

p:last-child { margin-bottom: 0; }

strong { color: var(--navy); }

/* BANNED BINS */
.banned-bins {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}

.banned-bin {
  text-align: center;
  flex: 0 0 200px;
}

.bin-wrap {
  position: relative;
  display: inline-block;
  width: 180px;
}

.bin-wrap img {
  width: 100%;
  display: block;
}

.no-symbol {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  border: 14px solid rgba(180, 0, 0, 0.9);
  box-sizing: border-box;
  pointer-events: none;
}

.no-symbol::after {
  content: '';
  position: absolute;
  width: 14px;
  background: rgba(180, 0, 0, 0.9);
  top: -14px;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  transform-origin: center;
}

.bin-caption {
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.6rem;
  line-height: 1.4;
}

.bin-caption strong {
  color: var(--red);
}

.bin-arrow {
  font-size: 2.5rem;
  color: #aaa;
  align-self: center;
  padding-bottom: 2rem;
}

.bin-wrap-required {
  border: 3px solid var(--red);
}

.required-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--red);
  color: white;
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.3rem 0;
}

/* PULLQUOTE */
.pullquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--red);
  border-left: 4px solid var(--red);
  padding: 0.75rem 1.25rem;
  margin: 2rem 0;
  line-height: 1.5;
}

/* LINK MORE */
.link-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--navy);
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 1px;
}

.link-more:hover { color: var(--red); border-bottom-color: var(--red); }

.center { text-align: center; }

/* FOOTER */
footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 1.75rem 0;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  line-height: 1.9;
}

.small { font-size: 0.72rem; color: rgba(255,255,255,0.3); }

/* RESPONSIVE */
@media (max-width: 680px) {
  .hero-inner { flex-direction: column-reverse; gap: 1.5rem; }
  .hero-img { flex: none; width: 160px; }
  .hero-text h1 { font-size: 1.5rem; }
  nav { gap: 1rem; }
  .narrow { max-width: 100%; }
}
