
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  color: #2B2B2D;
  background: #F8F8F8;
}

.hero {
  position: relative;
  height: 90vh;
  background: url('Legacy.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 43, 45, 0.4);
}

.hero-content {
  position: relative;
  color: #F8F8F8;
  text-align: center;
  max-width: 600px;
  padding: 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-outline {
  padding: 12px 25px;
  border: 2px solid #C3A165;
  color: #C3A165;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.btn-soft {
  padding: 12px 25px;
  background: #E2DFDB;
  color: #2B2B2D;
  text-decoration: none;
  border-radius: 8px;
}

.section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
}

.about {
  display: flex;
  gap: 40px;
  align-items: center;
  background: #F0EAE4;
  border-radius: 12px;
  padding: 60px;
}

.about-divider {
  width: 2px;
  background: #C3A165;
  height: 120px;
}

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

.card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #E2DFDB;
  transition: 0.3s ease;
}

.card:hover {
  border-color: #C3A165;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.feature {
  background: #CFCBC7;
  text-align: center;
  padding: 80px 20px;
}

.contact {
  background: #F0EAE4;
  border-radius: 12px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #D0CDC8;
  font-size: 16px;
}

.btn-submit {
  background: #C3A165;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}

footer {
  background: #2B2B2D;
  color: white;
  text-align: center;
  padding: 30px;
  margin-top: 60px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
  }
  .about-divider {
    display: none;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero {
    height: 70vh;
  }
}
