.section-services {
    padding: 80px 0 40px;
}

.services-header {
    margin-bottom: 62px;
    max-width: 877px;
}

.services-heading {
    font-size: 46px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 32px;
    color: black;

}

.services-description {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.64;
    color: black;

}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.services-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.services-card:hover {
    transform: translateY(-4px);
}

.services-card__image {
    padding: 32px 32px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
}

.services-card__image img {
    max-height: 180px;
    width: auto;
    object-fit: contain;
}

.services-card__content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
    .link-arrow{
        margin-top: auto;
        svg{
            path{
                fill: #2AC372;
            }
        }
    }
}

.services-card__title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 34px;
    line-height: 1.2;
    color: black;

}

.services-card__desc {
    font-size: 16px;
    line-height: 1.6;
    color: black;
    margin-bottom: 24px;
}
