body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
}

header {
  background: #111;
  padding: 15px 0;
}

.nav {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.nav li {
  margin: 0 15px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.nav a.active,
.nav a:hover {
  color: #f4b400;
}

.hero {
  background: #222;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.5em;
}

.hero-buttons {
  margin: 20px 0;
}

.btn {
  display: inline-block;
  background: #f4b400;
  color: black;
  padding: 12px 20px;
  margin: 5px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.btn-secondary {
  background: white;
  color: black;
}

.trust {
  margin-top: 20px;
  font-size: 0.95em;
}

section {
  padding: 50px 20px;
  max-width: 1000px;
  margin: auto;
}

.services-overview {
  text-align: center;
}

.service-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-box {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
}

.reviews {
  background: #fafafa;
  text-align: center;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.review {
  background: white;
  padding: 20px;
  border-radius: 8px;
  font-style: italic;
}

.cta-mid {
  text-align: center;
  background: #111;
  color: white;
}

footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

.call-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #f4b400;
  text-align: center;
  padding: 12px;
}

.call-bar a {
  color: black;
  font-weight: bold;
  text-decoration: none;
}
