body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f8fc;
  color: #333;
}

.header {
  background-color: #f25a40;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.header h1 {
  margin: 0;
  font-size: 2.5rem;
}

.header p {
  margin-top: 10px;
  font-size: 1.1rem;
}

.property-section {
  padding: 40px 5%;
}

.property-section h2 {
  font-size: 1.8rem;
  color: #f25a40;
  margin-bottom: 30px;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.property-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s;
}

.property-card:hover {
  transform: translateY(-5px);
}

.property-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.property-card h3 {
  font-size: 1.2rem;
  color: #f25a40;
  margin: 0 0 10px;
}

.property-card p {
  margin: 0 0 10px;
  color: #555;
}

.property-card .price {
  font-weight: bold;
  color: #333;
  font-size: 1rem;
  margin-bottom: 15px;
}

.property-card .btn {
  background-color: #e26953;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s;
  align-self: flex-start;
}

.property-card .btn:hover {
  background-color: #f25a40;
}

.footer {
  text-align: center;
  padding: 20px;
  background-color: #e0f2f1;
  font-size: 0.9rem;
  color: #555;
}

.property-section .section-intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
  max-width: 800px;
}

