body {
  margin:0;
  font-family: Georgia, "Times New Roman", serif;
  color:#333;
  line-height:1.6;
}

.container{
  max-width:1100px;
  margin:auto;
  padding:0 20px;
}

.narrow {
  max-width:700px;
  margin:auto;
  text-align:center;
}

.topbar{
  background:white;
  border-bottom:1px solid #ddd;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
}

.logo-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  color: #2c3a46; /* dark blue-gray like your screenshot */
  font-weight: 500;
}

nav a{
  margin-left:25px;
  text-decoration:none;
  color:#333;
  font-size:15px;
}

nav a:hover{
  text-decoration:underline;
}

.hero{
  background-image:url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df");
  background-size:cover;
  background-position:center;
}

.hero-overlay{
  background:rgba(0,0,0,0.5);
  padding:120px 0;
}

.hero-content{
  color:white;
  max-width:700px;
}

.hero h1{
  font-size:42px;
  margin-bottom:15px;
}

.hero p{
  font-size:18px;
  margin-bottom:25px;
}

.button {
  background:#b48b4d;
  color:white;
  padding:12px 20px;
  text-decoration:none;
  display:inline-block;
}

#newsletter {
  text-align:center;
}

#contact {
  text-align:center;
}

.button:hover{
  background:#9a753e;
}

.section{
  padding:70px 0;
}

.gray{
  background:#f4f4f4;
}

h2 {
  margin-bottom: 25px;
  font-size: 28px;
  text-align: center;
}

.services{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.service h3{
  margin-bottom:10px;
}

footer{
  background:#111;
  color:white;
  text-align:center;
  padding:25px 0;
  font-size:14px;
}

.icon {
  margin-bottom:12px;
}

.icon svg {
  width:36px;
  height:36px;
  stroke:#b48b4d;
  stroke-width:2;
  fill:none;
}

.footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  color: #afafaf;
}