* { box-sizing: border-box; }

body {
  margin: 0;
  background: #000;
  color: #eaeaea;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

/* GLOBAL LINKS */
a,
.site-nav .nav-link,
.footer-contact a {
  color: #f2ae1d;
}
a:hover,
a:focus {
  color: #f2ae1d;
  text-decoration: underline;
}

/* LAYOUT */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px;
}

/* HEADER */
.site-header {
  background: #000;
  padding: 26px 0;
}

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

.logo img {
  max-height: 78px;
}

/* TWO-COLUMN INSPECTION LIST */
.two-column-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
}

/* keep existing FA bullet styling intact */
.two-column-list li {
  break-inside: avoid;
}

/* MOBILE: stack back to one column */
@media (max-width: 800px) {
  .two-column-list {
    grid-template-columns: 1fr;
  }
}

.site-nav .active {
  font-weight: bold;
}

/* MAIN */
.site-main {
  padding: 0px 0 50px;
}

.entry-content h1 {
  font-size: 34px;
  margin: 0 0 26px;
}

.entry-content h2 {
  font-size: 24px;
  margin: 38px 0 18px;
}

.entry-content h3 {
      font-size: 1.5em;
    color: #1681C8 ! Important;
    text-transform: uppercase;
}

.entry-content p {
  margin: 0 0 22px;
}

/* HERO ROW */
.hero-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin: 28px 0 36px;
}

.hero {
  width: 520px;
  max-width: 100%;
}

/* LISTS WITH FA5 */
.entry-content ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.entry-content ul li {
  position: relative;
  padding-left: 32px;
  margin: 10px 0;
}

.entry-content ul li::before {
  content: "\f5b0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #248CC8;
  position: absolute;
  left: 0;
  top: 4px;
}

/* FOOTNOTE */
.footnote {
  font-size: 15px;
  color: #cfcfcf;
}

/* FOOTER */
.site-footer {
  background: #2F3033;
  color: #e6e6e6;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  padding: 40px 22px 30px;
}

.footer-contact h3 {
  margin: 0 0 16px;
  font-size: 18px;
}

.footer-contact p {
  margin: 0 0 18px;
}

.footer-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-size: 13px;
  color: #b5b5b5;
  padding: 16px 0 18px;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-row,
  .footer-grid {
    grid-template-columns: 1fr;
    display: block;
  }

  .hero {
    width: 100%;
  }

  .footer-map iframe {
    height: 240px;
  }

  .entry-content h1 {
    font-size: 28px;
  }
}
