﻿.services-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.service-item {
    display: flex;
    align-items: center;
    border-radius: 30px;
    padding: 15px 20px;
    width: calc(50% - 10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s;
}

    .service-item:hover {
        transform: translateY(-3px);
    }

.service-number {
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
}

.service-text {
    color: #1e293b;
    font-size: 16px;
    font-weight: 500;
}

@media(max-width: 768px) {
    .service-item {
        width: 100%;
    }
}


