.technical-seo-process-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}
.seo-process-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fdfdfd;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}
.seo-process-step:hover {
    transform: translateY(-5px);
}
.seo-step-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #eef2f6;
    border-radius: 50%;
    color: #0b5cff;
    font-size: 28px;
}
.seo-step-icon svg {
    width: 28px;
    height: 28px;
    fill: #0b5cff;
}
.seo-step-content {
    display: flex;
    flex-direction: column;
}
.seo-step-title {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
}
.seo-step-desc {
    margin: 0;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}
@media (min-width: 768px) {
    .technical-seo-process-wrapper {
        flex-direction: row;
        justify-content: space-between;
    }
    .seo-process-step {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}