body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 20px;
}

.section {
    padding: 20px;
}

.section h2 {
    margin-bottom: 15px;
}

.property-info {
    background-color: #f9f9f9;
    padding: 20px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 10px;
}

.photo-grid img {
    width: 100%;
    cursor: pointer;
    border-radius: 10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 50px;
    right: 50px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

@keyframes zoom {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.modal-content {
    animation: zoom 0.6s;
}

#caption {
    color: white;
    text-align: center;
    padding: 10px 0;
}

.features {
    background-color: #f1f1f1;
    padding: 20px;
}

.map {
    height: 400px;
    width: 100%;
}

.contact {
    text-align: center;
    padding: 20px;
}

.contact a {
    display: inline-block;
    margin: 10px;
    padding: 10px;
    background-color: #333;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}
