.work-steps-ext {
    background: #fff;
}

.step-card-ext {
    background: #fff;
    border: 1px solid #e1eeea;
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
}

.step-card-ext:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 182, 180, 0.1);
    border-color: var(--primary);
}

.step-card-ext__number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.step-card-ext__title {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.step-card-ext__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #717e8a;
}

.step-card-ext__text p {
    margin-bottom: 0;
}

.work-steps-ext__footer {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #717e8a;
}

.work-steps-ext__footer p {
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .work-steps-ext__title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .step-card-ext {
        padding: 20px;
    }
}