

footer { background:#333; color:#fff; text-align:center; padding:20px; margin-top:50px;}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: url('../static/bd.JPG') center/cover no-repeat;
  background-size: cover;
}

.hero {
  position: relative;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.4);
  z-index: 1;
}

.hero-title,
.catchy-phrase {
  position: relative;
  z-index: 2;
}

.catchy-phrase {
  margin-top: 10px;
  font-size: 1.5rem;
}

.property-card img {
  height: 200px;
  object-fit: cover;
}

.faq-section {
  max-width: 800px;
  margin: 50px auto;
}

.faq-section h3 {
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
}

.faq-item {
  border: none;
  margin-bottom: 10px;
}

.footer {
  background: #222;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  flex-wrap: wrap;
}

.footer .social-icons a {
  color: #fff;
  margin-left: 15px;
  font-size: 18px;
}
.icon-circle {
  background-color: #fff;
  color: #000;
  border-radius: 50%;
  padding: 5px;
  font-size: 16px;
}

.staff-section {
  padding: 40px 0;
  background: #f8f9fa;
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.staff-card {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.staff-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.staff-card h3 {
  margin: 10px 0 5px;
  font-size: 18px;
}
.staff-card p {
  color: #666;
}
.no-staff {
  margin-top: 20px;
  color: #888;
  text-align: center;
}
