.content-section{
	padding:60px 0 0 0;
}
.content-section .content-text a{
	color:var(--primary);
}
.content-section .content-text a:hover{
	text-decoration:underline;
}

.process-section {
  padding: 80px 0;
  background:var(--light-gray);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
	margin-top:50px;
}

/* LINE */
.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 1px;
  background: #ddd;
  z-index: 0;
}

/* STEP */
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* CIRCLE */
.step-circle {
  width: 60px;
  height: 60px;
  background: #b30000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: bold;
  font-size: 20px;
}

.step-item h4 {
  font-size: 18px;
  font-weight: 600;
}