/* 법무컨설팅 페이지 스타일 */

/* 서비스 아이템 스타일 */
.service-six__item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-six__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* 아이템 헤더 스타일 */
.item-head {
    margin-bottom: 20px;
}

.item-head .title {
    color: #333;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* 리스트 스타일 */
.service-six__item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-six__item ul li {
    padding: 8px 0;
    font-size: 20px;
    line-height: 32px;
    color: #666;
}

/* 배경색 스타일 */
.gray_bgs {
    background-color: #f8f9fa;
}

/* CTA 섹션 스타일 */
.contact-six-aera3 {
    background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
    padding: 80px 0;
}

/* 프로세스 이미지 스타일 */
.service img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* 모바일 이미지 */
.mimg {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

/* 프로세스 다이어그램 스타일 */
.legal-process-diagram {
    padding: 40px 0;
    overflow-x: auto;
}

/* 데스크톱용 가로 레이아웃 */
.process-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-width: 900px;
    margin: 0 auto;
}

.process-flow-mobile {
    display: none;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c2a386 0%, #a08568 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(194, 163, 134, 0.3);
    position: relative;
}

.step-number {
    color: white;
    font-size: 28px;
    font-weight: 700;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.step-content {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-content li {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    padding: 3px 0;
}

.step-content li::before {
    content: "✓";
    color: #c2a386;
    font-weight: bold;
    margin-right: 8px;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    margin-top: 40px;
}

.process-arrow i {
    color: #c2a386;
    font-size: 24px;
    animation: slideRight 1.5s infinite;
}

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

/* 모바일용 세로 레이아웃 */
@media (max-width: 767px) {
    .process-flow {
        display: none !important;
    }

    .process-flow-mobile {
        display: block !important;
        max-width: 400px;
        margin: 0 auto;
    }

    .process-step-mobile {
        background: #f8f9fa;
        border-radius: 15px;
        padding: 25px;
        margin-bottom: 20px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    }

    .step-header {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .process-step-mobile .step-circle {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, #c2a386 0%, #a08568 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
        font-weight: 700;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .process-step-mobile .step-title {
        font-size: 18px;
        font-weight: 700;
        color: #333;
        margin: 0;
    }

    .process-step-mobile .step-content {
        margin-left: 65px;
    }

    .process-arrow-mobile {
        text-align: center;
        margin: 15px 0;
    }

    .process-arrow-mobile i {
        color: #c2a386;
        font-size: 24px;
        animation: slideDown 1.5s infinite;
    }

    @keyframes slideDown {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(10px);
        }
    }
}