.atta-process-section {
    padding: 60px 0;
    background: var(--bs-gray-100);
    position: relative;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 150px;
    position: relative;
}

.icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #dc3545;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.process-icon {
    font-size: 30px;
    color: #333;
}

.step-label {
    margin-top: 10px;
    font-weight: 500;
    color: #333;
}

@media (max-width: 991px) {
    .process-steps {
        justify-content: center;
    }

    .process-step {
        flex: 0 0 calc(33.333% - 30px);
    }
}

@media (max-width: 767px) {
    .process-step {
        flex: 0 0 calc(50% - 30px);
    }
}