body {
	    margin: 0;
	    padding: 0;
	    font-family: Arial, sans-serif;
	    background-color: #002a43;
	    text-align: center;
		
	}
	
	.featured-properties h1{
	font-size: 28px;
		font-weight: bold;
		padding: 100px 0px 0px 0px;;
		color: #D4AF37;
	}	
	
	.atas{
	padding: 40px 0px;
	}
	
	.property-list {
	    display: flex;
	    flex-wrap: wrap;
	    justify-content: center;
	    gap: 20px;
	    max-width: 1200px;
	    margin: 0 auto;
		padding: 0px 25px;
		
	}
	.property-card {
	    width: calc(33.33% - 20px);
	    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	    border-radius: 10px;
	    overflow: hidden;
	    background: #E8E8E8;
	    text-align: left;
	    transition: transform 0.3s ease;
		padding-bottom: 20px;
	}
	.property-card img {
	    width: 100%;
	    height: 200px;
	    object-fit: cover;
	    transition: transform 0.3s ease-in-out;
	}
	
	
	.property-card:hover img {
	    transform: scale(1.1);
	}
	
	.property-card a {
	    text-decoration: none;
	    color: black;
	}
	
	.property-card a:hover {
	    color: inherit;
	}
	
	
	.property-details { 
		padding: 15px; 
	color: #002a43; /* Set text color */
	}
	
	@media (max-width: 992px) { .property-card { width: calc(50% - 20px); } }
	@media (max-width: 600px) { .property-card { width: 100%; } }
	
	.page {
	    text-align: center;
	    padding: 20px 0px;
	}
	
	.page button {
	    background-color: #D4AF37;
	    color: white;
	    border: none;
	    padding: 10px 15px;
	    font-size: 16px;
	    cursor: pointer;
	    border-radius: 5px;
	    margin: 5px;
	}
	.page button:disabled {
	    background-color: #ccc;
	    cursor: not-allowed;
	}
	