.property-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    min-height: 100vh;
    
}

.content-area {
   background: #FFFFFF; /* White background for content */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow */
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    width: 90%;
    max-width: 1200px;
    padding: 20px;
    margin: 20px;
    text-align: center; /* Centers text in all child elements */
}

.houseDetailsHeader h2, .houseDetailsHeader h3 {
  color: #164057; /* Dark Blue for main headers */
    margin: 10px 0;

}

.slider-container {
    position: relative;
    margin: 20px 0;
    overflow: hidden; /* Ensures that elements outside this container are not visible */
    width: 100%; /* Adjust according to your design needs */
}

.slider {
    display: flex;
    width: 100%; /* Ensures the slider takes the full width of the container */
    transition: transform 0.3s ease-in-out; /* Smooth transition for sliding */
    transform: translateX(0%); /* Initial position */
}

.slide {
    flex: 0 0 100%; /* Each slide takes up 100% of the slider container */
    max-width: 100%; /* Ensures slide does not exceed container width */
    display: flex; /* Keeps the image and other elements inline */
    justify-content: center; /* Centers content within each slide */
    align-items: center; /* Vertically centers content within each slide */
}

.slide img {
    width: 100%; /* Full width of the slide */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensures image covers the slide area */
}

.prev-button, .next-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
  background-color: rgba(0, 255, 0, 0);
  font-size: 50px;
  color: #fff;
  border: none;
  cursor: pointer;
    
}

.prev-button { left: 10px; }
.next-button { right: 10px; }

.house-amenities {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px 0;
}

.amenity {
    background: #1D65A1; /* Medium Blue for amenities */
    color: #FFFFFF; /* White text */
    padding: 10px 20px;
    border-radius: 4px;
    margin: 5px;
    flex-basis: calc(25% - 10px); /* Four items per row with spacing */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.houseDescription, .disclaimer {
    color: #164057; /* Dark Blue for main headers */
    background: #FDFEFE; /* Very light white for text areas */
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.houseDescription h3 {
   color: #164057;
  
}
.rowProp .cta {
    padding: 20px;
    background: #5BB2F7;
    border-radius: 4px;
    color: white;
  
}
.rowProp .cta h2{
  color: white;
}

.btn-primary {
    background-color: #ecb94f;
    color: #164057;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .amenity {
        flex-basis: calc(50% - 10px); /* Two items per row on smaller screens */
    }
}
@media (max-width: 900px) {
.property-container{
    width: 100%;
     margin: 0 auto;
  }
.content-area {
      margin: 10px;
      width: 100%;
      
    }
.rowProp .cta h2{
  color: white;
   font-size: 18px;
}