body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #f7f7f7;
}

header {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
}

header h1 {
  margin: 0 0 10px;
  font-size: 2rem;
}

header p {
  margin: 0 0 15px;
  font-size: 1.1rem;
}

section {
  padding: 50px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

p {
  font-size: 1rem;
}

ul {
  padding-left: 20px;
}

.btn {
  display: inline-block;
  background: #c58b2a;
  color: #fff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #a8741f;
}

.hero-image {
  background: url("images/hero-1.jpg") center center / cover no-repeat;
  position: relative;
  max-width: 100%;
  padding: 0;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.hero-overlay h2,
.hero-overlay h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-overlay p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-trust-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-trust-points li {
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.financing {
  background: #111;
  color: #fff;
  text-align: center;
  border-radius: 12px;
}

.financing .btn {
  margin-top: 10px;
}

.gallery {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

form {
  display: grid;
  gap: 15px;
  max-width: 700px;
  margin: 0 auto;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

label {
  display: flex;
  align-items: center;
  gap: 10px;
}

footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.review-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.review-stars {
  color: #c58b2a;
  font-size: 1rem;
  margin-bottom: 12px;
}

.review-card p {
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-overlay {
    padding: 60px 20px;
  }

  .hero-overlay h2,
  .hero-overlay h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }
}