.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.property-type-card {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.property-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}
.property-type-card>* {
    position: relative;
    z-index: 2;
}
.property-type-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feature-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section-spacing {
    margin-bottom: 3rem;
}
.check-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}
.check-icon {
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}
.developer-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.developer-item:hover {
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.property-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.property-type-card {
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.property-type-card:hover {
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}