* { box-sizing: border-box; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  background: #ffffff;
  margin: 0;
  line-height: 1.6;
  font-size: 16px;
}

a { color: #1a5276; }

.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  border-bottom: 1px solid #ddd;
  padding: 14px 0;
}

.header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-title {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
}

nav a {
  text-decoration: none;
  font-size: 14px;
  color: #444;
}

nav a:hover,
nav a:focus,
nav a[aria-current="page"] {
  color: #1a5276;
  text-decoration: underline;
}

.nav-label {
  font-size: 12px;
  font-weight: bold;
  color: #777;
  text-transform: uppercase;
}

.call-now {
  background: #1a5276;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.hero { padding: 30px 0 10px; }
.hero h1 { font-size: 26px; margin: 0 0 10px; }
.hero p { font-size: 16px; margin: 0 0 14px; }

h2 {
  font-size: 20px;
  border-bottom: 2px solid #1a5276;
  padding-bottom: 6px;
  margin-top: 40px;
}

h3 { font-size: 17px; margin: 24px 0 6px; }

table.block {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

table.block td {
  vertical-align: top;
  padding: 10px;
  width: 50%;
}

.service-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #e8e8e8;
}

ul.locations,
ul.service-list {
  padding: 0;
  margin: 10px 0;
}

ul.locations { list-style: none; }
ul.locations li { display: inline-block; margin: 0 14px 6px 0; }
ul.service-list { padding-left: 22px; }
ul.service-list li { margin-bottom: 7px; }

.testimonials table { width: 100%; border-collapse: collapse; }
.testimonials td { width: 33.3%; vertical-align: top; padding: 10px; font-style: italic; font-size: 14px; }
.testimonials .name { font-style: normal; font-weight: bold; margin-top: 8px; display: block; }

ul.faq { padding-left: 18px; }
ul.faq li { margin-bottom: 6px; }

.price-box,
.trust-box {
  border: 1px solid #ccc;
  padding: 14px 18px;
  margin: 20px 0;
  background: #fafafa;
}

.price-box strong { color: #1a5276; }

.contact-form {
  max-width: 620px;
  margin-top: 18px;
}

.contact-form label {
  display: block;
  font-weight: bold;
  margin-top: 12px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 9px;
  border: 1px solid #aaa;
  font: inherit;
  background: #fff;
}

.contact-form textarea { min-height: 120px; resize: vertical; }
.hidden { display: none; }

button,
.cta-btn {
  display: inline-block;
  border: 0;
  background: #1a5276;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font: inherit;
  font-weight: bold;
  margin-top: 10px;
  cursor: pointer;
}

button:hover,
button:focus,
.cta-btn:hover,
.cta-btn:focus,
.call-now:hover,
.call-now:focus {
  background: #123b55;
  color: #fff;
}

footer {
  margin-top: 50px;
  border-top: 1px solid #ddd;
  padding: 20px 0;
  font-size: 13px;
  color: #555;
}

footer .footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

footer nav {
  display: block;
  columns: 2;
  column-gap: 24px;
}

footer nav a { display: block; margin-bottom: 6px; }

@media (max-width: 700px) {
  .header-inner { align-items: flex-start; }
  header nav { width: 100%; }
  .call-now { margin-top: 4px; }
  table.block,
  table.block tbody,
  table.block tr,
  table.block td,
  .testimonials table,
  .testimonials tbody,
  .testimonials tr,
  .testimonials td {
    display: block;
    width: 100%;
  }
}
