.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(163deg, rgba(0, 127, 255, 1) 47%, rgba(251, 96, 34, 1) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.tech-item {
    background: #196af1;
    padding: 20px;
    border-radius: 8px;
    color: #fff;
    border-left: 4px solid #1bcfbc;
}

.tech-item h6 {
    color: #fff;
    margin-bottom: 10px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 10px;
}

.service-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.service-list a:hover {
    color: #007FFF;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.benefits-list i {
    margin-right: 10px;
}

.feature-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    height: 100%;
}

.feature-icon {
    flex-shrink: 0;
}