/* 프로세스 섹션 스타일 */
.process-section.list_box_warp {
    padding: 100px 0;
    background: #fff;
    position: relative;
    border: none;
}

.process-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.process-section .section-tittle {
    text-align: center;
    margin-bottom: 60px;
}

.process-section .section-tittle span {
    font-size: 18px;
    color: #2196F3;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.process-section .section-tittle h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.process-section .section-tittle p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;

}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    position: relative;
    width: 180px;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    flex-shrink: 0;
}

.process-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.process-icon-wrapper:hover {
    transform: translateY(-10px);
}

.process-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: #fff;
    font-size: 40px;
}

.process-step h3 {
    font-size: 20px;
    color: #333;
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1.4;
}

.process-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.process-description {
    margin-top: 60px;
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.process-description h4 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.process-description p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.2s; }
.process-step:nth-child(2) { animation-delay: 0.4s; }
.process-step:nth-child(3) { animation-delay: 0.6s; }
.process-step:nth-child(4) { animation-delay: 0.8s; }
.process-step:nth-child(5) { animation-delay: 1.0s; }

/* 반응형 스타일 */
@media (max-width: 1200px) {
    .process-timeline::before {
        top: 50px;
    }
    
    .process-step {
        width: 160px;
    }
    
    .process-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .process-icon {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 60px 0;
    }

    .process-timeline {
        padding: 20px 0;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .process-step {
        width: 100%;
        max-width: 300px;
    }
    
    .process-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .process-icon {
        font-size: 28px;
    }
    
    .process-step h3 {
        font-size: 18px;
    }
    
    .process-step p {
        font-size: 13px;
    }

    .process-section .section-tittle h2 {
        font-size: 28px;
    }

    .process-section .section-tittle p {
        font-size: 14px;
    }
}

/* 기존 스타일 재정의 */
.process-section.list_box_warp ul {
    display: none !important;
}

.process-section .web_icon-table {
    display: none !important;
}

/* 추가 스타일 재정의 */
.process-section.list_box_warp {
    border-left: none !important;
}

.process-section .section-tittle * {
    color: inherit !important;
} 