body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}
header {
  background: #3e4b3f;
  color: #fff;
  padding: 50px 0;
  text-align: center;
}
.tagline {
  margin-bottom: 20px;
}
.call-btn {
  background: #d6b36a;
  color: #000;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
}
section {
  padding: 50px 0;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  
}
.card {
  background: #fff;
  padding: 25px;
  flex: 1;
  min-width: 250px;
}
footer {
  background: #3e4b3f;
  color: #fff;
  text-align: center;
  padding: 15px 0;
}
.hero-image {
  width: 100%;
  max-height: 400px;
  margin: 20px 0;
  border-radius: 6px;
}

.card-image {
  width: 100%;
  height: 180px;
  margin: 15px 0;
  border-radius: 6px;
}
.photo-wrap {
  max-width: 600px;   /* controls how big the photo can be */
  margin: 20px auto;  /* centers it */
}

.photo-wrap img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}