.elementor-55 .elementor-element.elementor-element-a37e447{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-2da26a2 *//* Service List Styles */
.services ul {
    list-style-type: none;
    padding: 0;
    font-size: 1.3rem;
    color: #444;
    text-align: left;
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap on small screens */
    justify-content: space-between;
}

.services li {
    display: flex;
    flex-direction: column; /* Stack the image and text vertically */
    align-items: center;
    margin: 18px;
    width: calc(33.33% - 20px); /* Three items per row on desktop */
    box-sizing: border-box;
    text-align: center;
}

.service-img {
    width: 100%; /* Make image take full width of container */
    height: 200px; /* Set a fixed height for uniformity */
    object-fit: cover; /* Ensures image covers the area */
    border-radius: 10px; /* Rounded corners */
    margin-bottom: 15px; /* Space between image and text */
    max-width: 300px; /* Limit the image size to prevent the image from growing too large */
}

.services li span {
    font-size: 1.4rem;
    color: #333;
    margin-top: 10px;
}

/* Responsive Design - For mobile */
@media (max-width: 768px) {
    .services li {
        width: 100%; /* On mobile, each item takes full width */
        margin: 10px 0;
    }

    .service-img {
        max-width: 100%; /* Make the image width fit mobile screens */
        height: auto;
    }
}/* End custom CSS */