
@media screen and (max-width: 800px) {
    /*.container { display: flex; flex-flow: column; }*/
    .img-order { order: 1; }
    .text-order { order: 2 }
}

.services-container {
    gap: 10px;
    margin: 150px auto;
    width: 90%;
}

.column img {
    width: 100%;
    border-radius: 8px;
}

.row {
    margin-bottom: 50px;
    margin-top: 100px;
}

.services-container img {
    max-width: 100%; /* Ensure image responsiveness */
    height: auto;
    border-radius: 1.5rem; /* Adjust the radius as needed */

}



.row p {
    margin: 0; /* Remove default margin for the text block */
    color: black;
    margin-top: 20px;
}





/* Services Block */

/* Block Divided in 2 */
.services-text-block-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 30px; /* Adjust as needed */
    margin-top: 30px;
}

/* Smaller Text at the Top */
.services-smaller-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

/* Title */
.services-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Description */
.services-description {
    font-size: 18px;
    color: #353238;
    margin-bottom: 20px;
}

/* Horizontal Line */
.services-hr-line {
    border-top: 1px solid #ccc;
    margin-bottom: 20px;
}


/* Buttons Section */
.services-buttons-section {
    flex-basis: 35%;
    display: flex;
    justify-content: flex-end; /* Align buttons to the right */

}

/* Button Styles */
.services-button {
    padding: 10px 15px;
    background-color: #4f3598;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    margin-right: 10px;
    border-radius: 10px; /* Bootstrap rounded button style */
    min-width: 150px;
    height: 50px;

    /* Flexbox centering */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.services-button:hover {
    background-color: rgb(134, 111, 180);
    text-decoration: white;
    color: white;
}