.header-section {
  background-image: url("../images/bg/movement.jpg");
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.intro {
  text-align: center;
  margin-bottom: 60px;
}

.intro p {
  max-width: 50%;	
  margin: 0 auto;
  font-size:18px;	
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin: 120px 0 20px;
  font-weight: bold;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 50px;
  margin: 60px 0;
  font-size:18px;	
}
.benefit {
  background-color: #f7f7f7;
  padding:40px;
  border:1px solid #d1d6db;
}
.benefit p {
 padding:10px 0;
}
.benefit-number{
  font-size: 26px;
  font-weight: bold;
  color: #fff;	
  background-color: #e7882c;
  border-radius: 10px;
  margin:20px auto 40px;	
  width:50px;	
}
.benefit-number p {
  padding:5px;	
}
.benefit hr{
  border: none;
  border-top: 2px dotted #d1d6db;
  margin: 0px auto 20px;
  padding:0;	
}
.benefit img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius:  px;
  margin-bottom: 10px;
}

.process-section {
  margin: 60px auto;
}

.customer-process {
  text-align: center;
  margin: 60px auto;
}


.steps-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 80px 0 0;
}
.step-item {
  width: 100%;
  box-sizing: border-box;
  background-color: #f7f7f7;
  padding: 20px 0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-item img {
  width: 60px;
  height: auto;
  margin: 20px 0;
}

.step-item .step-label {
  background-color: #e7882c;
  color: #fff;
  padding: 3px 10px;
  font-size: 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.step-item p {
  font-size: 20px;
  margin: 0;
  padding: 10px;
  font-weight: 600;
}

.steps-customer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0 0;
}



/* 반응형 */
@media (max-width: 1024px){
  .steps-process {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }	
.step-item {
  width: 100%;
}

.steps-customer {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}		
}




@media (max-width: 767px) {
.intro {
  margin-bottom: 0px;
}	
.section-title {
  margin: 100px 0 20px;
  font-size: 26px;
}
.intro p {
  max-width: 100%; font-size:16px;	
}		

.benefits {
  grid-template-columns: 1fr;
  margin: 40px 0 0; 
  font-size:15px;  
}
.benefit{
  padding:20px;
}	
.benefit-number{
  font-size: 22px;
  width:40px;	
}	

.customer-process {
  text-align: center;
  margin: 0px auto;
}	

.steps-process {
    grid-template-columns: repeat(2, 1fr);
  }	
.steps-customer {
  grid-template-columns: repeat(2, 1fr);
}
.step-item {
  width: 100%;
  padding: 20px 0;
  box-sizing: border-box; /* padding 포함 계산 */
}

.step-item img {
  width: 60px;
  height: auto;
  margin: 10px 0;
}	
	
.step-item p {
  font-size: 18px;
  margin: 0;
  padding: 10px;
  font-weight: 600;
} 	
}