.gd-blocks.real-estate-services {
    display: flex;
    flex-wrap: wrap;
    gap: 62px;
    justify-content: space-between;
    padding: 20px;
}

.gd-blocks.real-estate-services .service-block {
     /* Two blocks per row */
     position: relative;
     max-width: 415px;
}

.gd-blocks.real-estate-services .service-block h3 {
    font-size: 36px;
    font-weight: 400;
    color: #fff; /* Text color */
    font-family: 'Neue Haas Grotesk Display Pro';
    line-height: 43.2px;
    margin: 0;
}

.gd-blocks.real-estate-services .service-block p {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    font-family: 'Roboto';
    line-height: 21.09px;
    margin: 0;
    margin-top: 30px;
}

.gd-blocks.real-estate-services .service-block::before {
    content: attr(data-number); /* Display the block number */
    position: absolute;
    top: 36px;
    left: -95px;
    font-size: 16px;
    font-weight: 400;
    color: #fff; /* White text for the number */
    font-family: 'Roboto';
    line-height: 18.75px;
}

.gd-blocks.real-estate-services .service-block::after {
    content: '';
    position: absolute;
    top: 10px;
    left: -95px;
    height: 1px;
    width: 62px;
    background-color: #B97F26; /* Gold color for the line */
}

@media (max-width: 768px) {
    .gd-blocks.real-estate-services .service-block {
        flex: 1 1 100%; /* Single block per row on smaller screens */
    }
}
