/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 25 2023 | 06:55:55 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 
/* Reset some default styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Set a background color and font for the entire page */
body {
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

/* Style the header section */
.header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

/* Style the navigation menu */
.nav-menu {
    background-color: #444;
    text-align: center;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
}

.nav-menu li {
    display: inline;
    margin-right: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* Style the main content section */
.main-content {
    padding: 20px;
}

/* Style a property listing */
.property-listing {
    background-color: #fff;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 20px;
}

.property-listing h3 {
    font-size: 24px;
}

.property-listing p {
    font-size: 16px;
}

/* Style the footer section */
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

