.property-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px;
    padding-bottom: 70px;
}

.property-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.gallery-slider {
    position: relative;
    margin-bottom: 2rem;
}

.gallery-slider .slide {
    position: relative;
}

.gallery-slider img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.property-stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

.property-stats .stat {
    text-align: center;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.feature-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.property-sidebar {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    height: fit-content;
}