body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

header {
    background: #007bff;
    color: #fff;
    padding: 1em 0;
    text-align: center;
    display: center;
    flex-direction: column;
    align-items: center;
}

header .logo {
    max-width: 250px;
    margin-bottom: 1em;
}

header nav {
    width: 100%;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
}

header nav ul li {
    margin: 0.5em 0;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 0.5em 1em;
    background: #0056b3;
    border-radius: 4px;
    transition: background 0.3s;
}

header nav ul li a:hover {
    background: #003f7f;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    header {
        padding: 1em;
    }

    header .logo {
        margin-bottom: 0.5em;
    }

    header nav ul {
        flex-direction: column;
        align-items: normal;
    }

    header nav ul li {
        width: auto;
        text-align: center;
    }

    header nav ul li a {
        display: block;
        width: auto;
    }
}

.section {
    padding: 4em 0;
    background: #fff;
    margin: 1em 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.section h2 {
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
    color: #007bff;
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 1em;
    text-align: left;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    background: url('check.svg') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin: 0.5em 0;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1em;
    margin-top: 1em;
}

.image-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#property-details ul {
    list-style: none;
    padding: 0;
}

#property-details ul li {
    background: url('check.svg') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin: 0.5em 0;
}


footer {
    background: #343a40;
    color: #fff;
    text-align: center;
    padding: 2em 0;
    margin-top: 2em;
}
