
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#0d0d0d;
  color:white;
  font-family:Arial,sans-serif;
}

.hero{
  background:black;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:20px;
  border-bottom:4px solid #9acd32;
}

.top-logo{
  width:100%;
  max-width:900px;
  border-radius:12px;
}

section{
  max-width:1200px;
  margin:auto;
  padding:60px 20px;
}

.intro{
  text-align:center;
}

.intro h1{
  color:#9acd32;
  font-size:3rem;
  margin-bottom:15px;
}

.intro p{
  font-size:1.3rem;
  margin-bottom:20px;
}

.btn{
  display:inline-block;
  background:#ff6600;
  color:white;
  text-decoration:none;
  padding:15px 30px;
  border-radius:8px;
  font-weight:bold;
}

.voicemail{
  margin-top:15px;
  color:#9acd32;
}

.property-section{
  background:#1a1a1a;
  text-align:center;
  border-top:3px solid #9acd32;
  border-bottom:3px solid #9acd32;
}

.property-section p{
  max-width:850px;
  margin:auto;
  font-size:1.1rem;
}

h2{
  color:#9acd32;
  text-align:center;
  margin-bottom:30px;
  font-size:2.2rem;
}

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

.card{
  background:#1a1a1a;
  border:2px solid #9acd32;
  padding:25px;
  border-radius:10px;
  text-align:center;
  font-weight:bold;
}

.why-us ul{
  list-style:none;
  max-width:700px;
  margin:auto;
}

.why-us li{
  background:#1a1a1a;
  margin:12px 0;
  padding:15px;
  border-left:5px solid #ff6600;
}

.contact{
  text-align:center;
}

footer{
  background:black;
  text-align:center;
  padding:25px;
  border-top:4px solid #9acd32;
}

@media(max-width:768px){
  .intro h1{
    font-size:2rem;
  }
}
