.property-service-section {
    background-color: black;
    color: white;
    padding: 50px 0;
}
.property-service-header {
    text-align: center;
    margin-bottom: 40px;
}
.property-service-card {
    background-color: white;
    color: black;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}
.property-service-card:hover {
    transform: scale(1.05);
}
.property-service-card img {
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}
.property-service-card .number {
    background-color: black;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    left: 10px;
}
.property-service-card-container {
    position: relative;
}