/* ================================================
   INNER PAGE STYLES — auto-accidents, personal-injury, workers-comp
   ================================================ */

/* ===== HERO BANNER ===== */
.inner-hero {
  position: relative;
  width: 100%;
  height: 370px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.inner-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.inner-hero-title {
  position: relative;
  z-index: 2;
  font-family: 'Lato', sans-serif;
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* ===== INTRO / MURPHY'S LAW SECTION ===== */
.intro-section {
  background-color: #f5f5f5;
  padding: 55px 30px 60px;
  text-align: center;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-title-row h2 {
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #2cc5e3;
  letter-spacing: 1px;
  white-space: nowrap;
  margin: 0;
}

.title-rule {
  flex: 1;
  height: 1px;
  background: #d5d5d5;
  min-width: 40px;
}

.intro-subtext {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #747474;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== BODY CONTENT — two columns ===== */
.body-section {
  background: #fff;
  padding: 60px 0 70px;
}

.body-columns {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.body-text {
  flex: 1 1 0;
  min-width: 0;
}

.body-text p {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #747474;
  line-height: 1.85;
  margin-bottom: 18px;
}

.body-text p:last-child {
  margin-bottom: 0;
}

.body-text a {
  color: #2cc5e3;
  text-decoration: none;
}

.body-text a:hover {
  text-decoration: underline;
}

.body-image {
  flex: 0 0 380px;
  width: 380px;
}

.body-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== TEAL ADDRESS BAR (inner pages only) ===== */
.teal-address-bar {
  background-color: #2cc5e3;
  padding: 50px 30px;
  text-align: center;
}

.teal-address-bar .address-line {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .inner-hero {
    height: 260px;
  }

  .inner-hero-title {
    font-size: 34px;
  }

  .body-columns {
    flex-direction: column;
  }

  .body-image {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .inner-hero {
    height: 200px;
  }

  .inner-hero-title {
    font-size: 26px;
  }

  .intro-section {
    padding: 40px 20px;
  }

  .teal-address-bar .address-line {
    font-size: 18px;
  }
}
