body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #F7F5F2;
  color: #2F2F2F;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}

.logo-img {
  height: 40px;
}

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

.hero {
  height: 80vh;
  background: url('images/coastal.jpg') center/cover no-repeat;
}

.overlay {
  height: 100%;
  background: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  text-align: center;
}

.lead {
  font-size: 1.4em;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #6E8B8B;
  color: white;
  text-decoration: none;
  margin-top: 15px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 40px 0;
}

.card {
  background: white;
  padding: 20px;
  text-align: center;
}

.alt {
  background: #FFFFFF;
}

footer {
  text-align: center;
  padding: 20px;
}