/* Recruit Info Styles */
.recruit-info-container {
    padding: 60px 0;
    text-align: center;
}

.recruit-header {
    margin-bottom: 60px;
}

.recruit-header h3 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.recruit-header p {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

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

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 120px;
    height: 120px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-icon i {
    font-size: 48px;
    color: #333;
    transition: all 0.3s ease;
}

.step-num {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background: var(--point-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    border: 3px solid #fff;
}

.step-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.step-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    padding: 0 10px;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 45px;
    color: #ddd;
}

.step-arrow i {
    font-size: 24px;
}

/* Hover Effects */
.step-item:hover .step-icon {
    border-color: var(--point-color);
    background: var(--point-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 91, 172, 0.2);
}

.step-item:hover .step-icon i {
    color: #fff;
}

.step-item:hover .step-num {
    background: #fff;
    color: var(--point-color);
    border-color: var(--point-color);
}

.step-item:hover .step-content h4 {
    color: var(--point-color);
}

/* Responsive */
@media (max-width: 1200px) {
    .recruit-info-container {
        padding: 40px 20px;
    }

    .recruit-header h3 {
        font-size: 32px;
    }

    .process-steps {
        flex-direction: column;
        gap: 40px;
    }

    .step-arrow {
        transform: rotate(90deg);
        padding: 0;
        margin: -20px 0;
    }

    .step-item {
        width: 100%;
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
    }

    .step-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-icon i {
        font-size: 32px;
    }

    .step-num {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .step-content {
        padding-top: 10px;
    }

    .step-content h4 {
        margin-bottom: 10px;
    }

    .step-content p {
        padding: 0;
    }
}