
body {
  margin:0;
  font-family: system-ui, sans-serif;
  background:#e5e5e5;
  color:#222;
}

.nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 40px;
  background:#2f2f2f;
  color:#fff;
}

.brand {
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-v {
  background:#fff;
  color:#2f2f2f;
  font-weight:800;
  padding:6px 10px;
  border-radius:6px;
}

.nav a {
  color:#fff;
  margin-left:20px;
  text-decoration:none;
}

.cta {
  background:#444;
  padding:8px 14px;
  border-radius:6px;
}

.hero {
  height:60vh;
  background:url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac') center/cover;
  display:flex;
  align-items:center;
  padding-left:60px;
}

.hero-text {
  background:rgba(0,0,0,0.6);
  padding:30px;
  color:#fff;
  border-radius:10px;
}

section {
  padding:80px 60px;
}

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

.policy-grid div {
  background:#fff;
  padding:24px;
  border-radius:12px;
}

.process {
  background:#dcdcdc;
}

.reviews {
  text-align:center;
}

.carousel {
  max-width:700px;
  margin:auto;
}

.review {
  display:none;
  font-size:20px;
}

.review.active {
  display:block;
}

.contact form {
  max-width:500px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.contact input, .contact textarea {
  padding:12px;
  border-radius:8px;
  border:1px solid #ccc;
}

.contact button {
  padding:14px;
  border:none;
  border-radius:8px;
  background:#2f2f2f;
  color:#fff;
  font-size:16px;
}

footer {
  background:#2f2f2f;
  color:#fff;
  text-align:center;
  padding:30px;
}

footer a,
.contact a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

footer a:hover,
.contact a:hover {
  text-decoration: underline;
}

.image-break {
  padding: 80px 60px;
}
.image-card {
  display: flex;
  gap: 30px;
  align-items: center;
}
.image-card img {
  width: 50%;
  border-radius: 14px;
}
.image-text {
  max-width: 500px;
}
.image-text h2 {
  margin-bottom: 10px;
}
@media(max-width: 900px){
  .image-card {
    flex-direction: column;
  }
  .image-card img {
    width: 100%;
  }
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 30px auto 0;
}
.image-grid img {
  width: 100%;
  border-radius: 14px;
}
@media(max-width: 800px){
  .image-grid {
    grid-template-columns: 1fr;
  }
}

.image-grid.small {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
}
.image-quote {
  max-width: 700px;
  margin: 10px auto 20px;
  font-style: italic;
  color: #444;
  text-align: center;
}

.review-cta {
  background: #f1f1f1;
  padding: 70px 40px;
  text-align: center;
}
.review-cta h2 {
  margin-bottom: 10px;
}
.review-cta p {
  margin-bottom: 20px;
  color: #555;
}
.review-btn {
  display: inline-block;
  background: #2f2f2f;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.review-btn:hover {
  background: #444;
}

.build-tag{opacity:.6;font-size:12px;margin-top:10px}
