body {
  font-family: "Times New Roman", serif;
  margin: 0;
  padding: 0;
  background: #e8f4f8;
}

/* Container: card-style */
.container {
 background-color: #ffffff;
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft 3D effect */
  text-align: center;
  border: 1px solid #dce7ef;
}

/*Main style */
.container h1 {
  font-size: 36px;
  font-weight: bold;
  color: #003366;  /* Elegant deep blue */
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

input, select, button {
  width: 100%;
  padding: 14px;
  margin: 12px 0;
  border: 1px solid #cfd9df;
  border-radius: 10px;
  font-size: 16px;
  background-color: #f9fbfc;
  font-family: "Times New Roman", serif;
}

input:focus, select:focus {
  outline: none;
  border-color: #0077b6; /* Highlight focus */
  box-shadow: 0 0 6px rgba(0, 119, 182, 0.3);
}

button {
  background: #2c7be5;
  color: white;
  cursor: pointer;
  border: none;
}

button:hover {
  background: #1a5bb8;
}

.property-card {
  background-color: #ffffff;          
  padding: 25px;                     
  margin: 20px 0;                       
  border-radius: 16px;               
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); 
  border: 1px solid #dce7ef;           
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: "Times New Roman", serif;
}

/* Hover effect for interactive feel */
.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.subtitle {
  font-size: 20px;
  color: #555;
  font-style: italic;
  margin-bottom: 30px;
}
