<style>
  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f6f5;
    color: #333;
    line-height: 1.6;
  }

  a {
    text-decoration: none;
  }

  header {
    background: #2e7d32;
    color: #fff;
    text-align: center;
    padding: 22px 20px 18px;
  }

  header h1 {
    margin: 0;
    font-size: 2.2rem;
  }

  header p {
    margin: 8px 0 0;
    font-size: 1rem;
  }

  .top-call {
    text-align: center;
    margin: 20px 0;
  }

  .top-call a {
    display: inline-block;
    background: #ff3b30;
    color: #fff;
    padding: 18px 35px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 10px;
  }

  nav {
    background: #1b5e20;
    padding: 14px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }

  nav a {
    display: inline-block;
    margin: 0 14px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
  }

  nav a:hover {
    text-decoration: underline;
  }

  .call-btn {
    background: #ff9800;
    padding: 8px 14px;
    border-radius: 4px;
  }

.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)),
    url("images/wheeling-bridge-hero.jpg");
  background-size: cover;
  background-position: center 30%;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

  .hero-content {
    max-width: 900px;
    margin: 0 auto;
  }

  .hero h2 {
    margin: 0 0 15px;
    font-size: 2.3rem;
    line-height: 1.2;
  }

  .hero p {
    max-width: 760px;
    margin: 0 auto 25px;
    font-size: 1.1rem;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
  }

@media (max-width: 768px) {
  .hero {
    background-position: center 25%;
  }
}

  .btn {
    display: inline-block;
    padding: 15px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    transition: 0.2s ease;
  }

  .btn-primary {
    background: #ff9800;
    color: #fff;
  }

  .btn-primary:hover {
    background: #e68900;
  }

  .btn-secondary {
    background: #fff;
    color: #1b5e20;
  }

  .btn-secondary:hover {
    background: #f0f0f0;
  }

  .sticky-call {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    background: #28a745;
    color: #fff;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

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

  .section-title {
    margin-bottom: 30px;
    color: #1b5e20;
    text-align: center;
    font-size: 2rem;
  }

  .services,
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
  }

  .card {
    background: #fff;
    border-radius: 8px;
    padding: 25px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .card h3 {
    margin-top: 0;
    color: #2e7d32;
  }

  .highlight-band {
    background: #e8f5e9;
    border-top: 1px solid #d6ead8;
    border-bottom: 1px solid #d6ead8;
  }

  .two-col {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: start;
  }

  .checklist {
    margin: 0;
    padding-left: 20px;
  }

  .checklist li {
    margin-bottom: 10px;
  }

  .areas {
    background: #fff;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 20px;
  }

  .areas-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .areas-grid li {
    padding: 8px 0;
  }

  .areas-grid a {
    color: #1b5e20;
    font-weight: 700;
  }

  .areas-grid a:hover {
    text-decoration: underline;
  }

  .quote-box {
    background: #fff;
    border-radius: 8px;
    padding: 30px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .contact-top {
    margin-bottom: 18px;
    font-size: 1.05rem;
  }

  .contact-top a {
    color: #1b5e20;
    font-weight: bold;
  }

  form label {
    display: block;
    margin-top: 14px;
    margin-bottom: 6px;
    font-weight: bold;
  }

  input,
  textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cfcfcf;
    border-radius: 5px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
  }

  textarea {
    resize: vertical;
    min-height: 120px;
  }

  .form-note {
    margin-top: 14px;
    font-size: 0.95rem;
    color: #666;
  }

  footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 26px 20px;
    margin-top: 40px;
  }

  footer p {
    margin: 6px 0;
  }

  @media (max-width: 800px) {
    .two-col {
      grid-template-columns: 1fr;
    }

    .hero {
      padding: 80px 20px;
    }

    .hero h2 {
      font-size: 1.9rem;
    }

    nav a {
      margin: 6px 10px;
    }

    .areas-grid {
      gap: 25px;
    }
  }

  @media (max-width: 500px) {
    .hero h2 {
      font-size: 1.7rem;
    }

    .btn {
      width: 100%;
      max-width: 320px;
    }

    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }

    header h1 {
      font-size: 1.8rem;
    }

    .top-call a {
      font-size: 20px;
      padding: 15px 24px;
    }

    .areas-grid {
      flex-direction: column;
      gap: 10px;
    }
  }
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f6f5;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

header {
  background: #2e7d32;
  color: #fff;
  text-align: center;
  padding: 22px 20px 18px;
}

header h1 {
  margin: 0;
  font-size: 2.2rem;
}

header p {
  margin: 8px 0 0;
  font-size: 1rem;
}

.top-call {
  text-align: center;
  margin: 20px 0;
}

.top-call a {
  display: inline-block;
  background: #ff3b30;
  color: #fff;
  padding: 18px 35px;
  font-size: 24px;
  font-weight: bold;
  border-radius: 10px;
}

nav {
  background: #1b5e20;
  padding: 14px 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

nav a {
  display: inline-block;
  margin: 0 14px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.call-btn {
  background: #ff9800;
  padding: 8px 14px;
  border-radius: 4px;
}

.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)),
    url("images/wheeling-bridge-hero.jpg");
  background-size: cover;
  background-position: center 30%;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h2 {
  margin: 0 0 15px;
  font-size: 2.3rem;
  line-height: 1.2;
}

.hero p {
  max-width: 760px;
  margin: 0 auto 25px;
  font-size: 1.1rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}

.about-hero {
  position: relative;
  background: url("images/about-hero.png") center center / cover no-repeat;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: #fff;
}

.about-hero-content h2 {
  margin: 0 0 15px;
  font-size: 2.4rem;
  line-height: 1.2;
}

.about-hero-content p {
  max-width: 760px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  padding: 15px 24px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  transition: 0.2s ease;
}

.btn-primary {
  background: #ff9800;
  color: #fff;
}

.btn-primary:hover {
  background: #e68900;
}

.btn-secondary {
  background: #fff;
  color: #1b5e20;
}

.btn-secondary:hover {
  background: #f0f0f0;
}

.sticky-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  background: #28a745;
  color: #fff;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.section-title {
  margin-bottom: 30px;
  color: #1b5e20;
  text-align: center;
  font-size: 2rem;
}

.services,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 8px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-top: 0;
  color: #2e7d32;
}

.highlight-band {
  background: #e8f5e9;
  border-top: 1px solid #d6ead8;
  border-bottom: 1px solid #d6ead8;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: start;
}

.checklist {
  margin: 0;
  padding-left: 20px;
}

.checklist li {
  margin-bottom: 10px;
}

.areas {
  background: #fff;
  border-radius: 8px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}

.areas-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.areas-grid li {
  padding: 8px 0;
}

.areas-grid a {
  color: #1b5e20;
  font-weight: 700;
}

.areas-grid a:hover {
  text-decoration: underline;
}

.quote-box {
  background: #fff;
  border-radius: 8px;
  padding: 30px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-top {
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.contact-top a {
  color: #1b5e20;
  font-weight: bold;
}

form label {
  display: block;
  margin-top: 14px;
  margin-bottom: 6px;
  font-weight: bold;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cfcfcf;
  border-radius: 5px;
  font-size: 1rem;
  font-family: Arial, sans-serif;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin-top: 14px;
  font-size: 0.95rem;
  color: #666;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 26px 20px;
  margin-top: 40px;
}

footer p {
  margin: 6px 0;
}

@media (max-width: 800px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero,
  .about-hero {
    padding: 80px 20px;
  }

  .hero h2,
  .about-hero-content h2 {
    font-size: 1.9rem;
  }

  nav a {
    margin: 6px 10px;
  }

  .areas-grid {
    gap: 25px;
  }
}

@media (max-width: 500px) {
  .hero h2,
  .about-hero-content h2 {
    font-size: 1.7rem;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  header h1 {
    font-size: 1.8rem;
  }

  .top-call a {
    font-size: 20px;
    padding: 15px 24px;
  }

  .areas-grid {
    flex-direction: column;
    gap: 10px;
  }
}

</style>
