.services-steps-wrapper {
    padding: 60px 0;
    background: #fff;
    border: 4px solid #ef4444; /* Added red border to resemble user screenshot context */
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.steps-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.steps-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 240px;
}

.step-image-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.step-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.step-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 50%;
    object-fit: cover;
}

.step-number {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    background: #0ea5e9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.3);
}

.step-title {
    font-size: 16px;
    font-weight: 500;
    color: #0ea5e9;
    line-height: 1.4;
    margin: 0;
}
