.services-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-between;
        align-items: stretch;
        /* border: 2px solid #ccc; */
        padding: 20px;
        border-radius: 10px;
        background-color: #fff;F
    }

    .service-card {
        flex: 1 1 calc(33.333% - 20px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        box-sizing: border-box;
        background: #f9f9f9;
        padding: 15px;
        border-radius: 8px;
        text-align: center;
        transition: transform 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-5px);
    }

    .about-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 5px;
        margin-bottom: 15px;
    }

    .service-card h4 {
        margin: 10px 0;
        font-size: 18px;
        min-height: 50px;
    }

    .service-card p {
        flex-grow: 1;
        margin: 0;
        padding-top: 10px;
        font-size: 14px;
        line-height: 1.5;
        min-height: 70px;
    }

    @media screen and (max-width: 991px) {
        .service-card {
            flex: 1 1 calc(50% - 20px);
        }
    }

    @media screen and (max-width: 600px) {
        .service-card {
            flex: 1 1 100%;
        }
    }

    .services {
        text-align: center;
        margin-bottom: 30px;
        font-size: 32px;
        font-weight: bold;
    }

    .view-all {
        text-align: center;
        margin-top: 30px;
    }

    .view-all a {
        text-decoration: underline;
        color: #007BFF;
    }